Introduction
API Reference
- Auth
- Events
- ListRates
- Lists
- Locations
- Organizations
- Payments
- TicketRates
- Tickets
- Webhook Endpoints
Webhooks
- Introduction
- Events
Get list rate by slug
Get list rate by 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
List rate organization unique identifier.
"abcdefghi1234567890"
Event unique identifier.
"abcdefghi1234567890"
Name of the list rate.
"General Access"
Name URL-friendly identifier.
"general-access"
Date when the price will be available for sale.
"2022-01-01T00:00:00.000Z"
If the list rate is marked as complete.
false
limited
, public
"limited"
Prices of the list rate.
A list rate can have one or multiple prices but only one can be active at a time.
Price of the list.
12
Date when the price will be available for sale.
"2022-01-01T00:00:00.000Z"
Date until the price will be available.
"2022-01-01T00:00:00.000Z"
Are men allowed
true
Are women allowed
true
Age restriction
18
More information for the list
"Subject to capacity."
Unique identifier for the price.
"1643064796675"
Unix hour from the price you can enter.
14400
If the list rate is available.
true
Maximum number of lists that can be purchased in a single order.
10
List rate unique identifier.
"abcdefghi1234567890"
Date until the price will be available.
"2022-01-01T00:00:00.000Z"
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
}