List issued tickets
GEThttps://api.tickettailor.com/v1/issued_tickets
Returns all issued tickets
Request
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
Possible values: [valid
, voided
]
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
Responses
- 200
- default
A successfully returned issued ticket
- application/json
- Schema
- Example (auto)
Schema
data object[]
links object
{
"data": [
{
"object": "issued_ticket",
"id": "it_50198",
"add_on_id": null,
"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": null,
"first_name": null,
"last_name": null,
"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"
}
}
Error schema
- application/json
- Schema
- Example (auto)
Schema
Http status code
Readable error code
Detailed error message
errors object[]
{
"status": 0,
"error_code": "string",
"message": "string",
"errors": [
{
"field": "string",
"messages": [
"string"
]
}
]
}
Authorization: http
name: BasicAuthtype: httpdescription: Use base64 encoded api key created in Ticket Tailor dashboard. scheme: basic
- curl
- php
- ruby
- python
- nodejs
- go
- CURL
curl -L 'https://api.tickettailor.com/v1/issued_tickets' \
-H 'Accept: application/json' \
-H 'Authorization: Basic PHVzZXJuYW1lPjo8cGFzc3dvcmQ+'