Retrieve product prices and stocks associated to specific event sessions.
POST/api/v1/eventim/catalog/eventSessions/pricesAndStocks/products
Fetches price and stock availability information for products associated to a session in the catalog. Filter by product IDs to get specific products, or retrieve all products. Filter by event ID and event session IDs to get session-specific pricing. Returns detailed pricing breakdown and stock limits for each product.
Examples
Success (200)
\{
"productsPricesAndStocks": [
\{
"eventSessionId": 1161,
"productId": 78879,
"amount": 38.00,
"fees": 3.00,
"feesDetails": [
\{ "colId": 2, "amount": 2.00 \},
\{ "colId": 3, "amount": 1.00 \}
],
"stockLimit": 200,
"productType": "EVENTSESSION"
\}
]
\}
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": "productIds[0]", "message": "ProductIds must contain only positive values" \}
],
"errorCount": 1
\}
Error 403 - Forbidden
\{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.4",
"title": "Forbidden",
"status": 403,
"detail": "Access denied to the requested event"
\}
Error 500 - Server error
\{
"type": "https://tools.ietf.org/html/rfc9110#section-15.6.1",
"title": "An error occurred while processing your request.",
"status": 500,
"traceId": "00-1234567890abcdef1234567890abcdef-1234567890abcdef-00"
\}
Request
Responses
- 200
- 400
- 403
- 422
- 500
OK
Bad Request
Forbidden
Unprocessable Content
Internal Server Error