Home
Version 3
Service Usage Events API

Service Usage Events API

List Service Usage Events

GET /v2/service_usage_events

Events are sorted by internal database IDs. This order may differ from created_at. Events close to the current time should not be processed because other events may still have open transactions that will change their order in the results.

Request

Route

GET /v2/service_usage_events?results-per-page=1&after_guid=be567132-4852-4f37-8709-41fcfe944e29

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: service_instance_type, service_guid
  • 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
after_guid Restrict results to Service Usage Events after the one with the given guid
results-per-page: 1
after_guid: be567132-4852-4f37-8709-41fcfe944e29

Body

Name Description Default Valid Values Example Values
guid The guid of the event.
state The desired state of the service.
  • CREATED
  • DELETED
  • UPDATED
org_guid The GUID of the organization.
space_guid The GUID of the space.
space_name The name of the space.
service_instance_guid The GUID of the service instance.
service_instance_name The name of the service instance.
service_instance_type The type of the service instance.
  • managed_service_instance
  • user_provided_service_instance
service_plan_guid The GUID for the service plan.
service_plan_name The name for the service plan.
service_guid The GUID of the service.
created_at The timestamp of the event creation.
service_label The name of the service.

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEwOCIsImVtYWlsIjoiZW1haWwtNzZAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ0NDc4MjkyNn0.3YSho-o7ovUduunS-O1uPtzNtPi4Co3xo9sV7X4CXiU
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/service_usage_events?results-per-page=1&after_guid=be567132-4852-4f37-8709-41fcfe944e29" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEwOCIsImVtYWlsIjoiZW1haWwtNzZAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ0NDc4MjkyNn0.3YSho-o7ovUduunS-O1uPtzNtPi4Co3xo9sV7X4CXiU" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 2,
  "total_pages": 2,
  "prev_url": null,
  "next_url": "/v2/service_usage_events?after_guid=be567132-4852-4f37-8709-41fcfe944e29&order-direction=asc&page=2&results-per-page=1",
  "resources": [
    {
      "metadata": {
        "guid": "03e85850-28ba-4f20-8b48-28503dde090b",
        "url": "/v2/service_usage_events/03e85850-28ba-4f20-8b48-28503dde090b",
        "created_at": "2015-10-07T00:35:26Z"
      },
      "entity": {
        "state": "CREATED",
        "org_guid": "guid-cf1f6983-3c61-4727-8162-004f0d8fb0e2",
        "space_guid": "guid-5442f3d6-b3b8-4e7d-be6d-a0ef01ff3804",
        "space_name": "name-397",
        "service_instance_guid": "guid-28a72a08-d0a6-46e3-a76b-24e518582cc4",
        "service_instance_name": "name-398",
        "service_instance_type": "type-5",
        "service_plan_guid": "guid-e4b2c314-e934-4c78-93cf-1b5fe5dd325a",
        "service_plan_name": "name-399",
        "service_guid": "guid-0ed06a3d-6f47-4510-935b-9f68ff111c61",
        "service_label": "label-28"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: e5224e71-c3e9-4789-b3bf-09e34eee3995
Content-Length: 1050
X-Content-Type-Options: nosniff