latestOpenAPI 3.1.12026-08-108026304.2 KB

7b222e8ec91c

Issued tickets

List issued tickets

Returns all issued tickets

get/v1/issued_tickets

Query parameters

event_idstring

The ID of the event to filter issued tickets for

event_series_idstring

The ID of the event series to filter issued tickets for

order_idstring

The ID of the order to filter issued tickets for

barcodestring

The barcode of the issued ticket

namestring

The name of the person attending an event

emailstring

The email of the person attending an event

referencestring

The imported reference of the ticket

status'valid' | 'voided'

The status of the issued ticket

created_atinteger

Unix timestamp filter that returns items with matched created_at value.

created_at.gtinteger

Unix timestamp filter that returns items with created_at greater than given value.

created_at.gteinteger

Unix timestamp filter that returns items with created_at greater than or equal given value.

created_at.ltinteger

Unix timestamp filter that returns items with created_at less than given value.

created_at.lteinteger

Unix timestamp filter that returns items with created_at less than or equal given value.

starting_afterstring

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.

ending_beforestring

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.

limitstring

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