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 Field | SOAP Field | Notes |
|---|---|---|
| contingentId | ID_Element | Contingent unique identifier (from AWSPO_GenericProperty) |
| contingentName | Label_Element | Contingent name/label |
Request
Responses
- 200
- 400
- 401
- 404
- 500
OK
Bad Request
Unauthorized
Not Found
Internal Server Error