Gallery Platform API
Reference

List a session's check-ins

The session's admissions, most recent scan first, with the door counts. The counts cover the whole session rather than the returned page, so two doors scanning at once read the same numbers.

GET
/gallery/sessions/{sessionId}/check-ins

The session's admissions, most recent scan first, with the door counts. The counts cover the whole session rather than the returned page, so two doors scanning at once read the same numbers.

Authorization

bearerAuth shows:read
AuthorizationBearer <token>

A gallery API key, sent as Authorization: Bearer gpk_… (or the x-api-key header).

In: header

Scope: shows:read

Path Parameters

sessionId*string

The session id.

Query Parameters

limit?integer

Page size. Defaults to 20; the maximum is 100.

Range1 <= value <= 100
Default20
cursor?string

Opaque cursor from the previous page's next_cursor. Omit for the first page.

source?string

Filter to the given source; the schema's enum lists the values.

Value in

  • "door"
  • "self"
  • "import"

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

{  "data": [    {      "id": "string",      "ticket_id": "string",      "session_id": "string",      "source": "door",      "checked_in_at": "string"    }  ],  "next_cursor": "string",  "counts": {    "tickets_issued": -9007199254740991,    "checked_in": -9007199254740991,    "not_checked_in": -9007199254740991  }}