Retrieve a Particular Event
GET /v2/events/:guid
Request
Route
GET /v2/events/9f2a9f39-9cf5-4788-a4f5-51cb650ea5d9
Body
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the event.
|
|
|
|
type
|
The type of the event.
|
|
- app.crash
- audit.app.start
- audit.app.stop
- audit.app.update
- audit.app.create
- audit.app.delete-request
- audit.app.ssh-authorized
- audit.app.ssh-unauthorized
- audit.space.create
- audit.space.update
- audit.space.delete-request
- audit.service_broker.create
- audit.service_broker.update
- audit.service_broker.delete
- audit.service.create
- audit.service.update
- audit.service.delete
- audit.service_plan.create
- audit.service_plan.update
- audit.service_plan.delete
- audit.service_plan_visibility.create
- audit.service_plan_visibility.update
- audit.service_plan_visibility.delete
- audit.service_dashboard_client.create
- audit.service_dashboard_client.delete
- audit.service_instance.create
- audit.service_instance.update
- audit.service_instance.delete
- audit.user_provided_service_instance.create
- audit.user_provided_service_instance.update
- audit.user_provided_service_instance.delete
- audit.service_binding.create
- audit.service_binding.delete
- audit.service_key.create
- audit.service_key.delete
|
- app.crash
- audit.app.update
|
actor
|
The GUID of the actor.
|
|
|
|
actor_type
|
The actor type.
|
|
|
|
actor_name
|
The name of the actor.
|
|
|
|
actee
|
The GUID of the actee.
|
|
|
|
actee_type
|
The actee type.
|
|
|
|
actee_name
|
The name of the actee.
|
|
|
|
timestamp
|
The event creation time.
|
|
|
|
metadata
|
The additional information about event.
|
{}
|
|
|
space_guid
|
The guid of the associated space.
|
|
|
|
organization_guid
|
The guid of the associated organization.
|
|
|
|
Headers
cURL
curl "https://api.[your-domain.com]/v2/events/9f2a9f39-9cf5-4788-a4f5-51cb650ea5d9" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTc2IiwiZW1haWwiOiJlbWFpbC00MUBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDQ0MjYwNjM3fQ.176mqRQmxGC3AxiNC71trJCBu_JAFDT5MVhq4m3pnuM" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "9f2a9f39-9cf5-4788-a4f5-51cb650ea5d9",
"url": "/v2/events/9f2a9f39-9cf5-4788-a4f5-51cb650ea5d9",
"created_at": "2015-09-30T23:30:37Z",
"updated_at": null
},
"entity": {
"type": "name-1063",
"actor": "guid-6c8e29ec-0040-4c2f-bf19-4351030f5bda",
"actor_type": "name-1064",
"actor_name": "name-1065",
"actee": "guid-bc6f7738-0763-4a7a-989d-7d0cbb321283",
"actee_type": "name-1066",
"actee_name": "name-1067",
"timestamp": "2015-09-30T23:30:37Z",
"metadata": {
},
"space_guid": "f607ffc1-ae6d-46f1-9e17-f422ee220335",
"organization_guid": "88255eed-5be2-4fc8-9421-dd24e06ea245"
}
}
Headers