Skip to content

Get service document

GET{{API_BASE_URL}}/ticketinghub/odata/v1

Lists the datasets this service exposes. The standard OData entry point — useful for discovery, and as the quickest way to confirm your token and base URL are both right.

Request

No parameters and no body.

Response

  • @odata.context (string): the metadata URL.
  • value (array): one entry per dataset.
    • name (string): the dataset name, for example Tickets.
    • kind (string): always EntitySet here.
    • url (string): the path to append to the service root.

Four entries are returned: Tickets, TicketUsages, StatisticGroups and Surveys.

Notes

A 200 here with four entries means your base URL, token, scope and network path are all correct — a useful first call when setting up a new environment.

Authentication#auth

This endpoint does not require authentication.

Headers#headers

AuthorizationBearer {{ACCESS_TOKEN}}

Required. A client-credentials token carrying the scope ticketinghub-api and no subject.

Responses#responses

200OKGet service document