Lists
Create a new list
Introduction
API Reference
- Auth
- Events
- ListRates
- Lists
- Locations
- Organizations
- Payments
- TicketRates
- Tickets
- Webhook Endpoints
Webhooks
- Introduction
- Events
Lists
Create a new list
POST
/
lists
curl --request POST \
--url https://channels-service-alpha.fourvenues.com/lists \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"send_notification": false,
"list_rate_id": "5f8d0f8b9d2b3b0017b6d8a0",
"list": {
"qr_code": "ABCDE12345",
"observations_referral": "Observations...",
"for": 5,
"full_name": "John Doe",
"email": "john@fourvenues.com",
"language": "en"
}
}'
{
"data": {
"_id": "1643064796675",
"event_id": "1643064796675",
"list_rate_id": "1643064796675",
"total_men": 3,
"total_women": 2,
"total_no_gender": 0,
"prices": [
{
"_id": "1683803249490",
"men": 2,
"women": 1,
"no_gender": 0,
"price": 50
}
],
"channel_id": "1643064796675",
"qr_code": "P3SQ1TFSK",
"full_name": "John Doe",
"email": "email@email.com",
"tags": [
"Free drink"
],
"for": 5,
"enter": 5,
"language": "es",
"observations_referral": "asdfghjkl123456",
"observations_reception": "",
"entry_time": "2024-09-04T07:32:26.000Z",
"raised": 153
},
"success": true
}
Authorizations
Body
application/json
List rate id of a list.
Example:
"5f8d0f8b9d2b3b0017b6d8a0"
Notify the QR for list
Example:
false
QRCode. Optional. If not provided, it will be generated automatically.
Example:
"ABCDE12345"
Observations referral
Example:
"Observations..."
Number of appointed people in list
Example:
5
Full name of a list. May be required depending on the settings of the list rate.
Example:
"John Doe"
Email of a list. May be required depending on the settings of the list rate.
Example:
"john@fourvenues.com"
Language of the appointed people. Available languages en, ca, fr, es, nl and it
Example:
"en"
Response
200
application/json
OK
Example:
"1643064796675"
Example:
"1643064796675"
Example:
"1643064796675"
Example:
3
Example:
2
Example:
0
Example:
"1643064796675"
Example:
"P3SQ1TFSK"
Example:
"John Doe"
Example:
"email@email.com"
Example:
5
Example:
5
Example:
"es"
Example:
"asdfghjkl123456"
Example:
""
Example:
"2024-09-04T07:32:26.000Z"
Example:
153
curl --request POST \
--url https://channels-service-alpha.fourvenues.com/lists \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"send_notification": false,
"list_rate_id": "5f8d0f8b9d2b3b0017b6d8a0",
"list": {
"qr_code": "ABCDE12345",
"observations_referral": "Observations...",
"for": 5,
"full_name": "John Doe",
"email": "john@fourvenues.com",
"language": "en"
}
}'
{
"data": {
"_id": "1643064796675",
"event_id": "1643064796675",
"list_rate_id": "1643064796675",
"total_men": 3,
"total_women": 2,
"total_no_gender": 0,
"prices": [
{
"_id": "1683803249490",
"men": 2,
"women": 1,
"no_gender": 0,
"price": 50
}
],
"channel_id": "1643064796675",
"qr_code": "P3SQ1TFSK",
"full_name": "John Doe",
"email": "email@email.com",
"tags": [
"Free drink"
],
"for": 5,
"enter": 5,
"language": "es",
"observations_referral": "asdfghjkl123456",
"observations_reception": "",
"entry_time": "2024-09-04T07:32:26.000Z",
"raised": 153
},
"success": true
}