Skip to main content
GET
List event occurrences

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

startDate[gte]
string<date>

Minimum start date filter (inclusive) in YYYY-MM-DD format

startDate[lte]
string<date>

Maximum start date filter (inclusive) in YYYY-MM-DD format

lastModified[gte]
string<date-time>

Minimum last modified timestamp filter (inclusive) in ISO 8601 format

lastModified[lte]
string<date-time>

Maximum last modified timestamp filter (inclusive) in ISO 8601 format

page[size]
integer

The number of entries to return per page. Range between 1 - 200, defaults to 100.

Required range: 1 <= x <= 200
page[after]
string

Accepts an existing page cursor to return results after it. For more details see the definition of PageCursor in the response.

page[before]
string

Accepts an existing page cursor to return results before it. For more details see the definition of PageCursor in the response.

pageSize
integer
deprecated

Maximum number of results to return. Use page[size] instead.

Required range: 1 <= x <= 200
cursor[before]
string
deprecated

Cursor to paginate through results before a given value. Use page[before] instead.

cursor[after]
string
deprecated

Cursor to paginate through results after a given value. Use page[after] instead.

Response

200 - application/json

Default Response

A paginated list of an organizer's event occurrence summaries.

data
OrganizerEventOccurrenceSummary · object[]
required
page
PageCursor · object
required

Cursor details for pagination.

  • In scenarios with large amounts of data, it's common to return only a subset of data in a single request, known as a "page".
  • Most API responses include two objects: a 'data' object with the query results, and a 'PageCursor' object detailing the current page.
  • Cursors can be used to navigate to earlier or later pages in the set of results. For instance, passing the 'next' cursor from 'PageCursor' fetches the next set of results.
  • Cursors are base64 encoded strings.
Example: