EventimOrderConfirmRequest
Request model for confirming an Eventim order.
The unique identifier of the cart to confirm.
The primary external identity associated with the order.
seatCartItems object[]nullable
The seat-related cart items to include in the order.
The unique identifier of the cart item.
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.
The unique identifier of the seat.
The optional external identity assigned to this seat.
The ticket support type. Allowed values: TICKET, ETICKET. Required when PrintAction is PRINTED. Must be null when PrintAction is DELAYED.
The barcode of the printed ticket. Required when PrintAction is PRINTED. Must be null when PrintAction is DELAYED.
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.
The unique identifier of the product cart item.
identities object[]nullable
The identities (buyer/attendees) associated with the order.
The unique external identifier for this identity.
The last name of the person.
The first name of the person.
The primary address line.
The secondary address line.
The tertiary address line.
The quaternary address line.
The postal code.
The city name.
The country code or name.
The phone number.
The mobile phone number.
The email address.
{
"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"
}
]
}