Introduction
API Reference
- Events
- Bookings
- Channels
- Lists
- Passes
- Subscriptions
- Tickets
- Users
- Payments
- Refunds
- Wallet Movement
Get lists
Get all the lists given a event.
curl --request GET \
--url https://api-alpha.fourvenues.com/integrations/lists/ \
--header 'integration_id: <api-key>' \
--header 'secret: <api-key>' \
--header 'x-api-key: <api-key>'
{
"success": true,
"data": [
{
"_id": "Pl4gr84v20xqu01js0ybj42s6vYtIz1T",
"channel_id": "ajifs2hke000dwemmurwd3kuqN3Kopcx",
"code": "P6J21FF2S",
"enter": 4,
"event_id": "Mjo4f9o9h01fdjvmmrgn9aoh4s5IBHzX",
"for": 7,
"name": "Miguel Román",
"observations_reception": "Birthday",
"rate_id": "Tl4gr63fr0xkr01i1gk354qbrSCMLTwl",
"rate_name": "General Access",
"rate_slug": "general-access",
"referral_id": "ñeifupjvx000rwe2m2zuba1z9FqyR2dSL",
"referral": {
"_id": "eifupjvx000rwe2m2zuba1z9FqyR2dSL",
"name": "John Appleseed"
},
"options": [
{
"_id": "1712861139741",
"women": 1,
"men": 1,
"no_gender": 0,
"price": 10,
"total": 2
}
],
"tags": [
"birthday",
"free-access"
],
"removed_at": 0
}
]
}
Authorizations
Identifier of the integration (Auth v1)
Secret of the organization (Auth v1)
API key (Auth v2)
Query Parameters
Event identifier.
Start date.
End date.
Limit of tickets.
Offset of tickets.
Response
true
Array of List
Unique ID of the list.
"Pl4gr84v20xqu01js0ybj42s6vYtIz1T"
Unique identifier of the channel. (It can be the same or other organization).
"ajifs2hke000dwemmurwd3kuqN3Kopcx"
Access code (QR) of the list.
"P6J21FF2S"
Number of people entered.
4
Event identifier.
"Mjo4f9o9h01fdjvmmrgn9aoh4s5IBHzX"
Number of people enlisted.
7
Name of the guest.
"Miguel Román"
Notes that will be shown to hostess.
"Birthday"
Rate identifier.
"Tl4gr63fr0xkr01i1gk354qbrSCMLTwl"
Rate name.
"General Access"
Rate slug.
"general-access"
PPRR identifier.
"ñeifupjvx000rwe2m2zuba1z9FqyR2dSL"
Unique ID of the option.
"1712861139741"
Number of women in the list option.
1
Number of men in the list option.
1
Number of no gender in the list option.
0
Price of the option.
10
Total of people in the list option.
2
Tags of the list.
["birthday", "free-access"]
Timestamp when the list was removed.
0
curl --request GET \
--url https://api-alpha.fourvenues.com/integrations/lists/ \
--header 'integration_id: <api-key>' \
--header 'secret: <api-key>' \
--header 'x-api-key: <api-key>'
{
"success": true,
"data": [
{
"_id": "Pl4gr84v20xqu01js0ybj42s6vYtIz1T",
"channel_id": "ajifs2hke000dwemmurwd3kuqN3Kopcx",
"code": "P6J21FF2S",
"enter": 4,
"event_id": "Mjo4f9o9h01fdjvmmrgn9aoh4s5IBHzX",
"for": 7,
"name": "Miguel Román",
"observations_reception": "Birthday",
"rate_id": "Tl4gr63fr0xkr01i1gk354qbrSCMLTwl",
"rate_name": "General Access",
"rate_slug": "general-access",
"referral_id": "ñeifupjvx000rwe2m2zuba1z9FqyR2dSL",
"referral": {
"_id": "eifupjvx000rwe2m2zuba1z9FqyR2dSL",
"name": "John Appleseed"
},
"options": [
{
"_id": "1712861139741",
"women": 1,
"men": 1,
"no_gender": 0,
"price": 10,
"total": 2
}
],
"tags": [
"birthday",
"free-access"
],
"removed_at": 0
}
]
}