PPylon Developers
ApiCheck In

Check in ticket by barcode

Checks in a ticket by scanning its barcode. Staff access required.

POST
/api/v1/tickets/check-in-by-barcode
AuthorizationBearer <token>

Enter your bearer token from the Pylon Auth API.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/tickets/check-in-by-barcode" \  -H "Content-Type: application/json" \  -d '{    "barcode": "string"  }'
{
  "isAllowed": true,
  "ticketId": "e3e3e8ea-b02a-4536-85a2-a9c90f4ee74f",
  "ticketNumber": "string",
  "eventName": null,
  "seatLabel": null,
  "attendeeName": null,
  "denialReason": null,
  "denialCode": null
}
{
  "code": "string",
  "message": "string"
}