Skip to main content

EventimOrderPrintTicketRequest

Request model for printing tickets of an Eventim order.

orderIdinteger<int32>required

The unique identifier of the confirmed order whose tickets are being printed.

orderItems object[]nullable

The order items to print, each carrying the seats to be finalized.

  • Array [
  • orderItemIdinteger<int32>required

    The unique identifier of the order item (order row) containing the seats.

    seats object[]nullable

    The seats of this order item to print.

  • Array [
  • seatIdinteger<int32>required

    The unique identifier of the seat.

    barCodestringnullable

    The barcode printed on the ticket.

    supportTypestringnullable

    The ticket support type. Allowed values: TICKET, ETICKET.

    fiscalNumberstringnullable

    The fiscal number printed on the ticket.

  • ]
  • ]
  • EventimOrderPrintTicketRequest
    {
    "orderId": 0,
    "orderItems": [
    {
    "orderItemId": 0,
    "seats": [
    {
    "seatId": 0,
    "barCode": "string",
    "supportType": "string",
    "fiscalNumber": "string"
    }
    ]
    }
    ]
    }