Home
Version 3
Spaces API

Spaces API

List all Events for the Space

GET /v2/spaces/:guid/events

Request

Route

GET /v2/spaces/08578d6f-f26b-4ecb-a3cb-d252d2085d17/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

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI3NiIsImVtYWlsIjoiZW1haWwtMjAxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTM4MzcyNzZ9.UjcUp8v9po_egyuafwMnXb1miv88Awqomaj-BEncTBg
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/spaces/08578d6f-f26b-4ecb-a3cb-d252d2085d17/events" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI3NiIsImVtYWlsIjoiZW1haWwtMjAxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTM4MzcyNzZ9.UjcUp8v9po_egyuafwMnXb1miv88Awqomaj-BEncTBg" \
	-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": "3bba01e8-c220-40d5-8f60-835e93624e80",
        "url": "/v2/events/3bba01e8-c220-40d5-8f60-835e93624e80",
        "created_at": "2016-01-19T19:41:16Z",
        "updated_at": null
      },
      "entity": {
        "type": "audit.space.update",
        "actor": "uaa-id-275",
        "actor_type": "user",
        "actor_name": "user@example.com",
        "actee": "08578d6f-f26b-4ecb-a3cb-d252d2085d17",
        "actee_type": "space",
        "actee_name": "name-1983",
        "timestamp": "2016-01-19T19:41:16Z",
        "metadata": {
          "request": {
            "name": "new_name"
          }
        },
        "space_guid": "08578d6f-f26b-4ecb-a3cb-d252d2085d17",
        "organization_guid": "620ef960-7ed9-4ead-a474-73219e4e75c7"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 
Content-Length: 906
X-Content-Type-Options: nosniff