Retrieve a Particular Event
GET /v2/events/:guid
Request
Route
GET /v2/events/825e4f1a-3bb4-4ca0-9317-f30bf93118d4
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/825e4f1a-3bb4-4ca0-9317-f30bf93118d4" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMyNyIsImVtYWlsIjoiZW1haWwtMjI1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDI2MDE1NDR9.aOwQiAsJnnXx-xv9xyUs1V8vY17yrwaow6ZC-914Hn4" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "825e4f1a-3bb4-4ca0-9317-f30bf93118d4",
"url": "/v2/events/825e4f1a-3bb4-4ca0-9317-f30bf93118d4",
"created_at": "2015-09-11T18:39:04Z",
"updated_at": null
},
"entity": {
"type": "name-1895",
"actor": "guid-54053cd5-d550-45f1-bad5-591e341f3b18",
"actor_type": "name-1896",
"actor_name": "name-1897",
"actee": "guid-6db67441-51dc-4fc4-a8e4-8bec8daf20d5",
"actee_type": "name-1898",
"actee_name": "name-1899",
"timestamp": "2015-09-11T18:39:04Z",
"metadata": {
},
"space_guid": "433065bd-2439-47bc-a0dd-ac4bc500cdb3",
"organization_guid": "0a0a3e26-a29d-481f-a6df-c74d5938e07c"
}
}
Headers