---
title: "Create an issued ticket"
method: POST
path: "/v1/issued_tickets"
tags: ["Issued tickets"]
---

# Create an issued ticket

`POST /v1/issued_tickets`

Creates a new issued ticket for an event occurrence from the available inventory. Issuing tickets via the API is charged at one credit per issued ticket, even if the ticket is free. Send the event_id and ticket_type_id to create the issued ticket from an event occurrence's ticket type allocation. Alternatively, send the hold_id to create the issued ticket from a pre-existing hold. The issued ticket is not associated to an order. The request will fail if no tickets are available to fulfil the request, or the ticket type is a 'seated' type (uses a seating chart).

## Response `201`

Successfully issued ticket

- object
  - `data` IssuedTicket[]
    - `object` string, required
    - `id` string, required — A unique identifier for the issued ticket
    - `add_on_id` string, nullable — A unique identifier for the associated product
    - `barcode` string, required — Barcode text value
    - `barcode_url` string, required — URL to barcode image
    - `checked_in` string, required — Returns whether or not issued ticket is checked in
    - `created_at` integer, required — Timestamp when issued ticket was created
    - `custom_questions` object[], required — Buyer provided answers to custom questions in checkout
      - `question` string
      - `answer` string, nullable
    - `description` string, required
    - `email` string, nullable, required — The order email address
    - `event_id` string, required — ID of the event issued ticket belongs to
    - `event_series_id` string, required — ID of the event series the issued ticket belongs to
    - `group_ticket_barcode` string, nullable, required — Barcode for group ticket, if it is part of one
    - `reference` string, nullable, required — An external reference for imported tickets (via the API or Dashboard)
    - `full_name` string, nullable, required — Full name of attendee
    - `first_name` string, nullable, required — First name of attendee
    - `last_name` string, nullable, required — Last name of attendee
    - `listed_currency` object, nullable — List currency of the ticket type at the time of purchase
      - `base_multiplier` integer
      - `code` 'gbp' | 'usd' | 'eur' | 'sgd' | 'aud' | 'brl' | 'cad' | 'czk' | 'dkk' | 'hkd' | 'huf' | 'ils' | 'jpy' | 'myr' | 'mxn' | 'nok' | 'nzd' | 'php' | 'pln' | 'rub' | 'sek' | 'chf' | 'twd' | 'thb' | 'try'
    - `listed_price` integer, nullable — List price of the ticket type at the time of purchase
    - `reservation` string, nullable, required — Reservation from seating chart where applicable
    - `status` 'valid' | 'voided', required
    - `source` 'api' | 'dashboard_import', nullable, required
    - `ticket_type_id` string, nullable, required — ID of the ticket type
    - `updated_at` integer, required — Timestamp when issued ticket was last updated
    - `voided_at` integer, nullable, required — Timestamp when issued ticket was voided
    - `order_id` string, nullable, required — A unique identifier for the order
    - `qr_code_url` string, required — URL to QR code image

## Other responses

- `default` — Error schema

---

[API](https://skmtc.net/tickettailor/apis/ticket-tailor-api.md) · [All operations](https://skmtc.net/tickettailor/apis/ticket-tailor-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tickettailor/ticket-tailor-api/revisions/7b222e8ec91c/schema)
