Home
Version 3
Spaces API

Spaces API

List all Events for the Space

GET /v2/spaces/:guid/events

Request

Route

GET /v2/spaces/626c183f-b599-4f55-bb7b-ef4ff7bcbedb/events

Parameters

Name Description Valid Values Example Values
guid The guid of the Space
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.
orphan-relations 0 - de-duplicate object entries in response
exclude-relations comma-delimited list of relations to drop from response
include-relations comma-delimited list of the only relations to include in response

Body

Name Description Default Valid Values Example Values

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE3OCIsImVtYWlsIjoiZW1haWwtMTE1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzM5ODExMDZ9.Sow3MnylOFjtThqNV42Gm6dfXs0BByBXPrALeeJRG-A
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/spaces/626c183f-b599-4f55-bb7b-ef4ff7bcbedb/events" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE3OCIsImVtYWlsIjoiZW1haWwtMTE1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzM5ODExMDZ9.Sow3MnylOFjtThqNV42Gm6dfXs0BByBXPrALeeJRG-A" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "9c5af3a9-27a0-44b3-9d39-7e198e0f37a1",
        "url": "/v2/events/9c5af3a9-27a0-44b3-9d39-7e198e0f37a1",
        "created_at": "2015-06-04T00:05:06Z",
        "updated_at": null
      },
      "entity": {
        "type": "audit.space.update",
        "actor": "uaa-id-177",
        "actor_type": "user",
        "actor_name": "user@example.com",
        "actee": "626c183f-b599-4f55-bb7b-ef4ff7bcbedb",
        "actee_type": "space",
        "actee_name": "name-1363",
        "timestamp": "2015-06-04T00:05:06Z",
        "metadata": {
          "request": {
            "name": "new_name"
          }
        },
        "space_guid": "626c183f-b599-4f55-bb7b-ef4ff7bcbedb",
        "organization_guid": "82a38467-3346-4170-8021-fe808ff20e0e"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 0aaff49a-bf7e-422d-8ff5-e1fa289f5e0c
Content-Length: 906
X-Content-Type-Options: nosniff