Retrieve a Particular Event
GET /v2/events/:guid
Request
Route
GET /v2/events/e7c7f94c-42f1-4b71-9bd8-f0e0e602ce1d
Body
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the event.
|
|
|
|
type
|
The type of the event.
|
|
- app.crash
- audit.app.update
- audit.app.create
- audit.app.delete-request
- 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
|
- 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/e7c7f94c-42f1-4b71-9bd8-f0e0e602ce1d" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMwMSIsImVtYWlsIjoiZW1haWwtMjAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjkwMzg3MTN9.Ku1X24e7J9UpN_ME8GY6O8Zy1xCu89cTCSnXJlaO2N0" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "e7c7f94c-42f1-4b71-9bd8-f0e0e602ce1d",
"url": "/v2/events/e7c7f94c-42f1-4b71-9bd8-f0e0e602ce1d",
"created_at": "2015-04-07T19:11:53Z",
"updated_at": null
},
"entity": {
"type": "name-1541",
"actor": "guid-34fc311d-e41d-4ab4-a8ba-9293d7655f93",
"actor_type": "name-1542",
"actor_name": "name-1543",
"actee": "guid-d69b0e5e-11c1-4a32-b2bd-750da23b7845",
"actee_type": "name-1544",
"actee_name": "name-1545",
"timestamp": "2015-04-07T19:11:53Z",
"metadata": {
},
"space_guid": "8f4e4187-a205-433e-9f24-d33faf40ba38",
"organization_guid": "6900a910-408d-45c0-9456-c45555a8676d"
}
}
Headers