7b222e8ec91c
List issued tickets
Returns all issued tickets
Query parameters
The ID of the event to filter issued tickets for
The ID of the event series to filter issued tickets for
The ID of the order to filter issued tickets for
The barcode of the issued ticket
The name of the person attending an event
The email of the person attending an event
The imported reference of the ticket
The status of the issued ticket
Unix timestamp filter that returns items with matched created_at value.
Unix timestamp filter that returns items with created_at greater than given value.
Unix timestamp filter that returns items with created_at greater than or equal given value.
Unix timestamp filter that returns items with created_at less than given value.
Unix timestamp filter that returns items with created_at less than or equal given value.
A paginator cursor value of object id (e.g. "or_123") that defines place in the list. To fetch next page of results, use the last object id from the current result list, e.g. starting_after=or_223.
A paginator cursor value of object id (e.g. "or_123") that defines place in the list. To fetch previous page of results, use the first object id from the current result list, e.g. ending_before=or_123.
The number of items to retrieve
Response
A successfully returned issued ticket
Example response
{
"data": [
{
"object": "issued_ticket",
"id": "it_50198",
"add_on_id": "pr_123",
"barcode": "al4R5",
"barcode_url": "https://www.tickettailor.com/userfiles/cache/barcode/qr/attendee/50198/42bf63ef2a055b91a62f",
"checked_in": "false",
"created_at": 1587042697,
"custom_questions": [],
"description": "Free ticket",
"email": "john@example.com",
"event_id": "ev_40980",
"event_series_id": "es_596",
"group_ticket_barcode": null,
"reference": "my reference code",
"full_name": "John Doe",
"first_name": "John",
"last_name": "Doe",
"listed_currency": {
"base_multiplier": 100,
"code": "gbp"
},
"listed_price": 100,
"status": "valid",
"source": "api",
"ticket_type_id": "tt_230656",
"updated_at": 1587042697,
"voided_at": null,
"order_id": "or_737352",
"qr_code_url": "https://www.tickettailor.com/userfiles/cache/barcode/st/attendee/50198/42bf63ef2a055b91a62f"
}
],
"links": {
"next": "/v1/events/{event_id}/issued_tickets?starting_after=it_120",
"previous": "/v1/events/{event_id}/issued_tickets?ending_before=it_100"
}
}