ValidateTicketJwtResponse
Whether the provided ticket JWT is valid.
ticket object
Unique identifier for the ticket
Name of the ticket
Name to be printed on the ticket
Email of the customer who owns the ticket
Timestamp when the ticket was created
Timestamp when the ticket was last updated
List of items included with the ticket
List of the items included with the ticket
Status of the ticket
Possible values: [active, void, used]
Financial status of the ticket
Possible values: [paid, unpaid, partially_refunded, refunded, comp]
Admission status of the ticket
Possible values: [checked_in, not_checked_in, denied]
not_checked_inQR token for the ticket
Timestamp when the ticket was checked in
Identifier of the user who checked in the ticket
Number of times the ticket has been checked in
If the ticket JWT is not valid, this field may contain a reason for the invalidity.
{
"valid": true,
"ticket": {
"ksuid": "string",
"name": "string",
"name_on_ticket": "string",
"customer_email": "string",
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z",
"includes": [
"string"
],
"expanded_includes": [
{}
],
"ticket_status": "active",
"financial_status": "paid",
"admission_status": "not_checked_in",
"qr_token": "string",
"checked_in_at": "2024-07-29T15:51:28.071Z",
"checked_in_by": "string",
"check_in_count": 0
},
"reason": "string"
}