Home
Version 3
Events API

Events API

List Space Create Events

GET /v2/events

Fields

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
  • app.crash
  • audit.app.update
actor The GUID of the actor.
actor_type The actor type.
  • user
  • app
actor_name The name of the actor.
actee The GUID of the actee.
actee_type The actee type.
  • space
  • app
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.

Parameters

Name Description Valid Values Example Values
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: timestamp, type, actee
  • q=filter:value
  • q=filter>value
  • q=filter IN a,b,c
page Page of results to fetch
results-per-page Number of results per page
order-direction Order of the results: asc (default) or desc
inline-relations-depth 0 - don't inline any relations and return URLs. Otherwise, inline to depth N.

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEzMSIsImVtYWlsIjoiZW1haWwtOTRAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQxNTc1NDEzNn0.--QTF6w1xesiThy22dTxfw3LKmCZFzOxITfKA1-LrGo
Host: example.org
Cookie: 

Route

GET /v2/events?q=type:audit.space.create

Query Parameters

q: type:audit.space.create

cURL

curl "https://api.[your-domain.com]/v2/events?q=type:audit.space.create" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEzMSIsImVtYWlsIjoiZW1haWwtOTRAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQxNTc1NDEzNn0.--QTF6w1xesiThy22dTxfw3LKmCZFzOxITfKA1-LrGo" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 4415930d-76d7-42d1-adb8-78db50900393
Content-Length: 916
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "c0dcd55b-58fe-437c-a8cc-6a0bae8fe499",
        "url": "/v2/events/c0dcd55b-58fe-437c-a8cc-6a0bae8fe499",
        "created_at": "2014-11-05T01:02:16+00:00",
        "updated_at": null
      },
      "entity": {
        "type": "audit.space.create",
        "actor": "uaa-id-130",
        "actor_type": "user",
        "actor_name": "user@email.com",
        "actee": "0202f518-0c2c-478e-965d-217fd1b1956e",
        "actee_type": "space",
        "actee_name": "name-596",
        "timestamp": "2014-11-05T01:02:16+00:00",
        "metadata": {
          "request": {
            "name": "outer space"
          }
        },
        "space_guid": "0202f518-0c2c-478e-965d-217fd1b1956e",
        "organization_guid": "74a9b925-8be2-4c9f-b423-9644b5042782"
      }
    }
  ]
}