EventimCartDetailResponse
Represents the response containing the full detail of a cart, with seat allocations and product allocations separated into distinct collections.
seats object[]nullable
The list of seat cart items with venue and pricing details.
Cart item identifier.
Event identifier.
Event session identifier.
Venue identifier.
Cart item status.
Whether the cart item contains contiguous seats.
seats object[]nullable
List of seats associated with the cart item.
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").
products object[]nullable
The list of product cart items with quantity and pricing details.
Cart item identifier.
Product identifier.
Optional event identifier. Null when the product is not scoped to a specific event.
Optional event session identifier. Null when the product is not scoped to a specific session.
Number of products allocated in this cart item.
Base price amount for the product per unit.
Total fees amount per unit.
feesDetails object[]nullable
Breakdown of fees by amount column.
Column identifier matching the amount label definition.
Amount value for this component (e.g., base price, tax, fee).
ruleErrors object[]nullable
The list of validation rule errors found for the cart items.
{
"seats": [
{
"cartItemId": 0,
"eventId": 0,
"eventSessionId": 0,
"venueId": 0,
"status": 0,
"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"
}
}
]
}
],
"products": [
{
"cartItemId": 0,
"productId": 0,
"eventId": 0,
"eventSessionId": 0,
"quantity": 0,
"amount": 0,
"fees": 0,
"feesDetails": [
{
"colId": 0,
"amount": 0
}
]
}
],
"ruleErrors": [
{
"cartItemId": 0,
"rateId": 0,
"ruleId": 0,
"errorMessage": "string"
}
]
}