Home
Version 3
Spaces API

Spaces API

List all Events for the Space

GET /v2/spaces/:guid/events

Request

Route

GET /v2/spaces/8c8acf84-1fb2-4cff-abf4-2867875be225/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.eyJ1c2VyX2lkIjoidWFhLWlkLTIxMSIsImVtYWlsIjoiZW1haWwtMTU1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjU5NDg2Njh9.sUEl7q7MNzyxqd0Y47OGqHHXHW9d5PERZBnT-tCNzyc
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/spaces/8c8acf84-1fb2-4cff-abf4-2867875be225/events" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIxMSIsImVtYWlsIjoiZW1haWwtMTU1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjU5NDg2Njh9.sUEl7q7MNzyxqd0Y47OGqHHXHW9d5PERZBnT-tCNzyc" \
	-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": "93bfe492-ca8c-49d0-bea8-0f44cf5fa438",
        "url": "/v2/events/93bfe492-ca8c-49d0-bea8-0f44cf5fa438",
        "created_at": "2015-03-03T00:51:08Z",
        "updated_at": null
      },
      "entity": {
        "type": "audit.space.update",
        "actor": "uaa-id-210",
        "actor_type": "user",
        "actor_name": "user@example.com",
        "actee": "8c8acf84-1fb2-4cff-abf4-2867875be225",
        "actee_type": "space",
        "actee_name": "name-1279",
        "timestamp": "2015-03-03T00:51:08Z",
        "metadata": {
          "request": {
            "name": "new_name"
          }
        },
        "space_guid": "8c8acf84-1fb2-4cff-abf4-2867875be225",
        "organization_guid": "94e47a3c-8d07-4e83-ac0f-6853e7980eba"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 2b35b288-7414-45cb-8f6b-84b91e27b43c
Content-Length: 906
X-Content-Type-Options: nosniff