Skip to main content

Retrieves the details of a cart item.

GET 

/api/v1/eventim/cart/:cartId/:cartItemId

Returns the full detail of a cart item including both seat allocations and product allocations. The response separates seats and products into distinct collections for easier processing.

Examples

✅ Success (200)

{
"seats": [
{
"cartItemId": 78341,
"eventId": 8745,
"eventSessionId": 19203,
"venueId": 5012,
"status": 1,
"isContiguous": true,
"seats": [
{
"rateId": 2045,
"amount": 38.00,
"fees": 3.00,
"feesDetails": [
{ "colId": 2, "amount": 2.00 },
{ "colId": 3, "amount": 1.00 }
],
"seatProperties": {
"seatId": 156789,
"categoryId": 101,
"floorId": 78790,
"designationId": 5,
"doorId": 12,
"blockId": 78821,
"tribuneId": 3,
"accessId": 1,
"contingentId": 3045,
"rank": "A",
"seat": "12",
"coordX": 125.50,
"coordY": 80.25,
"rotation": 0.00,
"typePhysical": "SEAT"
}
}
]
}
],
"products": [
{
"cartItemId": 12034,
"productId": 3021,
"eventId": 8745,
"eventSessionId": 19203,
"quantity": 2,
"amount": 76.00,
"fees": 6.00,
"feesDetails": [
{ "colId": 2, "amount": 4.00 },
{ "colId": 3, "amount": 2.00 }
]
}
],
"ruleErrors": [
{
"cartItemId": 78341,
"rateId": 2045,
"ruleId": 310,
"errorMessage": "Minimum 2 seat(s) required for this rate"
}
]
}

❌ Error 400 - Missing x-tenant header

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
"title": "Bad Request",
"status": 400,
"detail": "Tenant header 'x-tenant' is required"
}

❌ Error 422 - Validation failed

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.21",
"title": "Validation Failed",
"status": 422,
"detail": "The request contains 2 validation error(s)",
"errors": [
{ "field": "cartId", "message": "CartId must be greater than 0" },
{ "field": "cartItemId", "message": "CartItemId must be greater than 0" }
],
"errorCount": 2
}

❌ Error 404 - Cart not found

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.5",
"title": "Not Found",
"status": 404,
"detail": "Cart 45892 not found"
}

❌ Error 500 - Server error

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.6.1",
"title": "Internal Server Error",
"status": 500,
"detail": "An unexpected error occurred",
"traceId": "00-a1b2c3d4e5f6-789012345678-00"
}

Request

Responses

OK