πŸͺVenues

When generating a new client_id this will then be associated to an organisation ID, of which can contain venues (serials).

Get a list of venues

GET /v1/venues

This will return you a list of venues that are available within the organisation.

Query Parameters

Name
Type
Description

cursor

String

limit

{
  "data": [
    {
      "id": string,
      "name": string | null,
      "organization_id": string,
      "branding_settings": {
        "headerImage": string,
        "headerColor": string,
        "interfaceColor": string,
        "background": string,
        "backgroundImage": string | null
      }
    }
  ],
  "links": {
    "first": string | null,
    "last": string | null,
    "next": string | null,
    "prev": string | null
  }
}

Last updated

Was this helpful?