EventimAllocateBestSeatsResponse
Represents a response containing details of the best seats allocated for a specific event session.
The unique identifier of the cart associated with the allocated seats.
The unique identifier of the cart item representing the allocated seats.
cartItemDetail objectrequired
Represents a group of seats within a cart item, along with an indicator of whether the seats are contiguous.
Whether the seats are contiguous.
seats object[]nullable
List of seats in the group.
Rate identifier.
Base price amount.
Fees amount.
feesDetails object[]nullable
Details about fees.
Column identifier matching the amount label definition.
Amount value for this component (e.g., base price, tax, fee).
seatProperties objectrequired
Represents the properties and location of a seat in the venue seat map.
Seat identifier (ID_Physical).
Category identifier (ID_Category).
Floor identifier (ID_Floor).
Designation identifier for seat labeling.
Door/entrance identifier (ID_Door).
Block identifier (ID_Bloc).
Tribune/stand identifier (ID_Tribune).
Access point identifier (ID_Access).
Contingent/envelope identifier (ID_PrimaryEnvelope).
Row designation (e.g., "A", "B", "1").
Seat number within the row (e.g., "12", "15").
X coordinate position on the seat map.
Y coordinate position on the seat map.
Rotation angle in degrees for seat orientation.
Physical type of the seat (e.g., "SEAT").
{
"cartId": 0,
"cartItemId": 0,
"cartItemDetail": {
"isContiguous": true,
"seats": [
{
"rateId": 0,
"amount": 0,
"fees": 0,
"feesDetails": [
{
"colId": 0,
"amount": 0
}
],
"seatProperties": {
"seatId": 0,
"categoryId": 0,
"floorId": 0,
"designationId": 0,
"doorId": 0,
"blockId": 0,
"tribuneId": 0,
"accessId": 0,
"contingentId": 0,
"rank": "string",
"seat": "string",
"coordX": 0,
"coordY": 0,
"rotation": 0,
"typePhysical": "string"
}
}
]
}
}