Skip to main content

Removes seats from a shopping cart

POST 

/api/v1/eventim/cart/removeSeats

Releases previously allocated seats from a cart item. Can remove specific seats or all seats in the cart item. The seats become available again for other customers to purchase.

SOAP Equivalent: AWSP_CartRemoveSeats

Examples

Success (200)

{
"releasedCount": 3
}

Error 400 - Missing x-tenant header

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

Error 400 - Validation failed

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
"title": "Bad Request",
"status": 400,
"detail": "CartItemId must be greater than 0"
}

Error 404 - Cart item not found

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.5",
"title": "Not Found",
"status": 404,
"detail": "Cart item 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-abc123-def456-00"
}

SOAP to REST Field Mapping

REST FieldSOAP FieldNotes
cartItemIdID_TemporaryOrderRowCart item identifier (request parameter)
seatIdsListID_SeatArray of seat identifiers to remove (request parameter). If empty, all seats are removed
releasedCountresultNumber of seats successfully released. SOAP returns error code (0 = success), REST returns count directly

Request

Responses

OK