Skip to main content

Retrieves the detailed seat map for a specific event session

POST 

/api/v1/eventim/catalog/eventSessions/seatMap

Fetches the detailed seat map for a specific event session. Optionally filter by contingent, block, or floor. Choose to display only available seats. Returns seat properties with coordinates, status, pricing, and optional decorative elements (letters, shapes, images).

Examples

Success (200)

{
"seatMap": [
{
"seatId": 456789,
"categoryId": 101,
"floorId": 78790,
"designationId": 1,
"doorId": 5,
"blockId": 78821,
"tribuneId": 0,
"accessId": 12,
"contingentId": 3045,
"isAvailable": true,
"rank": "A",
"seat": "12",
"coordX": 150.5,
"coordY": 200.0,
"rotation": 0,
"typePhysical": "SEAT",
"groupPriority": 1,
"seatPriority": 10
}
],
"decorations": {
"texts": [
{
"label": "SCENE",
"font": "Arial",
"fontSize": 24.0,
"rotation": 0,
"drawColorHex": "#000000",
"opacity": 100,
"coordX": 250.0,
"coordY": 50.0
}
],
"shapes": [
{
"coordX": 0.0,
"coordY": 0.0,
"width": 500.0,
"height": 80.0,
"rotation": 0,
"fillColorFrameHex": "#333333",
"fillColorFillingHex": "#666666",
"opacity": 100,
"drawWidth": 2,
"radiusEdges": 0,
"shapeType": "RECTANGLE"
}
],
"images": []
}
}

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 1 validation error(s)",
"errors": [
{ "field": "eventSessionId", "message": "EventSessionId must be greater than 0" }
],
"errorCount": 1
}

Error 403 - Forbidden

{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.4",
"title": "Forbidden",
"status": 403,
"detail": "Access to this catalog is not allowed"
}

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