Skip to main content

EventimConfirmSeatOrderItem

Represents a seat cart item with its print action and associated seats.

cartItemIdinteger<int32>required

The unique identifier of the cart item.

printActionstringnullable

The print action to apply. Allowed values: DELAYED (deferred printing, no print details required), PRINTED (immediate printing, requires SupportType, BarCode, and FiscalNumber on each seat).

seats object[]nullable

The seats included in this cart item.

  • Array [
  • seatIdinteger<int32>required

    The unique identifier of the seat.

    externalIdentityIdinteger<int32>nullable

    The optional external identity assigned to this seat.

    supportTypestringnullable

    The ticket support type. Allowed values: TICKET, ETICKET. Required when PrintAction is PRINTED. Must be null when PrintAction is DELAYED.

    barCodestringnullable

    The barcode of the printed ticket. Required when PrintAction is PRINTED. Must be null when PrintAction is DELAYED.

    fiscalNumberstringnullable

    The fiscal number of the printed ticket. Required when PrintAction is PRINTED. Must be null when PrintAction is DELAYED.

  • ]
  • EventimConfirmSeatOrderItem
    {
    "cartItemId": 0,
    "printAction": "string",
    "seats": [
    {
    "seatId": 0,
    "externalIdentityId": 0,
    "supportType": "string",
    "barCode": "string",
    "fiscalNumber": "string"
    }
    ]
    }