Skip to main content

Retrieves the list of available contingents

GET 

/api/v1/catalog/contingents

Fetches all active contingents (seat allocations/quotas) configured in the system. Contingents are used to reserve specific seat blocks for different customer groups or sales channels.

SOAP Equivalent: AWSP_ContingentGetList

Examples

Success (200)

{
"contingents": [
{
"contingentId": 1,
"contingentName": "Public Sale"
},
{
"contingentId": 2,
"contingentName": "VIP"
}
]
}

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 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
contingentIdID_ElementContingent unique identifier (from AWSPO_GenericProperty)
contingentNameLabel_ElementContingent name/label

Request

Responses

OK