Retrieve a Particular Event
GET /v2/events/:guid
Request
Route
GET /v2/events/33c2825d-6953-4f5d-b434-1801b6d34bc2
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
|
- 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/33c2825d-6953-4f5d-b434-1801b6d34bc2" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5NCIsImVtYWlsIjoiZW1haWwtMjIxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzIzMTM2MjF9.usXhMnWvngQVFqQldr95ChfMdP3gC5yDVgYqAQsnH88" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "33c2825d-6953-4f5d-b434-1801b6d34bc2",
"url": "/v2/events/33c2825d-6953-4f5d-b434-1801b6d34bc2",
"created_at": "2015-05-15T16:53:41Z",
"updated_at": null
},
"entity": {
"type": "name-1808",
"actor": "guid-4fa06f72-4ffb-4a49-9fa2-63512a2fee24",
"actor_type": "name-1809",
"actor_name": "name-1810",
"actee": "guid-60b83ff0-649b-476f-bc92-c99448468b7c",
"actee_type": "name-1811",
"actee_name": "name-1812",
"timestamp": "2015-05-15T16:53:41Z",
"metadata": {
},
"space_guid": "6d30ee18-1a41-4d20-b9f9-c089a0ba4163",
"organization_guid": "aac89da1-4ded-400b-a931-3be3665ca540"
}
}
Headers