Skip to main content

EventimOrderConfirmRequest

Request model for confirming an Eventim order.

cartIdinteger<int32>required

The unique identifier of the cart to confirm.

mainExternalIdentityIdinteger<int32>required

The primary external identity associated with the order.

seatCartItems object[]nullable

The seat-related cart items to include in the order.

  • Array [
  • 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.

  • ]
  • ]
  • productCartItems object[]nullable

    The optional product-related cart items to include in the order.

  • Array [
  • cartItemIdinteger<int32>required

    The unique identifier of the product cart item.

  • ]
  • identities object[]nullable

    The identities (buyer/attendees) associated with the order.

  • Array [
  • externalIdentityIdinteger<int32>required

    The unique external identifier for this identity.

    namestringnullable

    The last name of the person.

    firstNamestringnullable

    The first name of the person.

    address1stringnullable

    The primary address line.

    address2stringnullable

    The secondary address line.

    address3stringnullable

    The tertiary address line.

    address4stringnullable

    The quaternary address line.

    zipCodestringnullable

    The postal code.

    citystringnullable

    The city name.

    countrystringnullable

    The country code or name.

    phonestringnullable

    The phone number.

    mobilestringnullable

    The mobile phone number.

    eMailstringnullable

    The email address.

  • ]
  • EventimOrderConfirmRequest
    {
    "cartId": 0,
    "mainExternalIdentityId": 0,
    "seatCartItems": [
    {
    "cartItemId": 0,
    "printAction": "string",
    "seats": [
    {
    "seatId": 0,
    "externalIdentityId": 0,
    "supportType": "string",
    "barCode": "string",
    "fiscalNumber": "string"
    }
    ]
    }
    ],
    "productCartItems": [
    {
    "cartItemId": 0
    }
    ],
    "identities": [
    {
    "externalIdentityId": 0,
    "name": "string",
    "firstName": "string",
    "address1": "string",
    "address2": "string",
    "address3": "string",
    "address4": "string",
    "zipCode": "string",
    "city": "string",
    "country": "string",
    "phone": "string",
    "mobile": "string",
    "eMail": "string"
    }
    ]
    }