Introduction
API Reference
- Auth
- Events
- ListRates
- Lists
- Locations
- Organizations
- Payments
- TicketRates
- Tickets
- Webhook Endpoints
Webhooks
- Introduction
- Events
ListRates
Get list rate by slug
Get list rate by slug
GET
/
list-rates
/
by-slug
/
{slug}
curl --request GET \
--url https://channels-service-alpha.fourvenues.com/list-rates/by-slug/{slug} \
--header 'X-Api-Key: <api-key>'
{
"data": {
"_id": "abcdefghi1234567890",
"organization_id": "abcdefghi1234567890",
"event_id": "abcdefghi1234567890",
"name": "General Access",
"slug": "general-access",
"valid_from": "2022-01-01T00:00:00.000Z",
"valid_until": "2022-01-01T00:00:00.000Z",
"complete": false,
"type": "limited",
"prices": [
{
"_id": "1643064796675",
"price": 12,
"from": 14400,
"valid_from": "2022-01-01T00:00:00.000Z",
"valid_until": "2022-01-01T00:00:00.000Z",
"men": true,
"women": true,
"age": 18,
"additional_info": "Subject to capacity."
}
],
"available": true,
"availability": {
"sold": 10,
"available": 90
},
"max": 10
},
"success": true
}
Authorizations
Path Parameters
List rate slug
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://channels-service-alpha.fourvenues.com/list-rates/by-slug/{slug} \
--header 'X-Api-Key: <api-key>'
{
"data": {
"_id": "abcdefghi1234567890",
"organization_id": "abcdefghi1234567890",
"event_id": "abcdefghi1234567890",
"name": "General Access",
"slug": "general-access",
"valid_from": "2022-01-01T00:00:00.000Z",
"valid_until": "2022-01-01T00:00:00.000Z",
"complete": false,
"type": "limited",
"prices": [
{
"_id": "1643064796675",
"price": 12,
"from": 14400,
"valid_from": "2022-01-01T00:00:00.000Z",
"valid_until": "2022-01-01T00:00:00.000Z",
"men": true,
"women": true,
"age": 18,
"additional_info": "Subject to capacity."
}
],
"available": true,
"availability": {
"sold": 10,
"available": 90
},
"max": 10
},
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.