Skip to main content

ValidateTicketJwtResponse

validbooleanrequired

Whether the provided ticket JWT is valid.

ticket object
ksuidstring

Unique identifier for the ticket

namestring

Name of the ticket

name_on_ticketstring

Name to be printed on the ticket

customer_emailstring

Email of the customer who owns the ticket

created_atdate-time

Timestamp when the ticket was created

updated_atdate-time

Timestamp when the ticket was last updated

includesstring[]

List of items included with the ticket

expanded_includesobject[]

List of the items included with the ticket

ticket_statusstring

Status of the ticket

Possible values: [active, void, used]

financial_statusFinancialStatus

Financial status of the ticket

Possible values: [paid, unpaid, partially_refunded, refunded, comp]

admission_statusstring

Admission status of the ticket

Possible values: [checked_in, not_checked_in, denied]

Default value: not_checked_in
qr_tokenstring

QR token for the ticket

checked_in_atdate-time

Timestamp when the ticket was checked in

checked_in_bystring

Identifier of the user who checked in the ticket

check_in_countinteger

Number of times the ticket has been checked in

reasonstring

If the ticket JWT is not valid, this field may contain a reason for the invalidity.

ValidateTicketJwtResponse
{
"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"
}