PPylon Developers
ApiTicket Administration

List tickets for session

Returns a paginated list of tickets for a specific session. Staff access required.

GET
/api/v1/sessions/{sessionId}/tickets
AuthorizationBearer <token>

Enter your bearer token from the Pylon Auth API.

In: header

Path Parameters

sessionId*string
Formatuuid

Query Parameters

page?integer
Default1
Formatint32
pageSize?integer
Default20
Formatint32
sort?string
q?string
status?unknown
Value in"Valid" | "CheckedIn" | "Refunded" | "Voided" | null

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/sessions/497f6eca-6276-4993-bfeb-53cbbbba6f08/tickets"
{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "ticketNumber": "string",
      "status": "string",
      "ticketTypeName": "string",
      "seatLabel": null,
      "currentHolderId": "7e755a82-bc10-4c7a-948f-df601c50d188",
      "holderEmail": null,
      "attendee": null,
      "checkedInAt": "2019-08-24T14:15:22Z",
      "transferCount": 0
    }
  ],
  "meta": {
    "totalCount": 0,
    "page": 0,
    "pageSize": 0,
    "totalPages": 0,
    "hasNext": true,
    "hasPrevious": true
  },
  "links": null
}
{
  "code": "string",
  "message": "string"
}