Introduction
API Reference
- Events
- Bookings
- Channels
- Lists
- Passes
- Subscriptions
- Tickets
- Users
- Payments
- Refunds
- Wallet Movement
Get passes
Get all the passes given a event.
curl --request GET \
--url https://api-alpha.fourvenues.com/integrations/passes/ \
--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",
"email": "my-client-email@fourvenues.com",
"enter": 4,
"for": 7,
"name": "Miguel",
"raised": 0,
"rate_name": "Pase Vip",
"rate_slug": "pase-vip",
"referral_id": "ñeifupjvx000rwe2m2zuba1z9FqyR2dSL",
"status": "valid"
}
]
}
Authorizations
Identifier of the integration (Auth v1)
Secret of the organization (Auth v1)
API key (Auth v2)
Query Parameters
Event identifier.
Response
true
Array of Pass
Unique ID of the pass.
"Pl4gr84v20xqu01js0ybj42s6vYtIz1T"
Unique identifier of the channel. (It can be the same or other organization).
"ajifs2hke000dwemmurwd3kuqN3Kopcx"
Access code (QR) of the pass.
"P6J21FF2S"
Email of the client.
"my-client-email@fourvenues.com"
Number of people entered.
4
Number of people enlisted.
7
Name of the client.
"Miguel"
Total amount raised.
0
Rate name.
"Pase Vip"
Rate slug.
"pase-vip"
PPRR identifier.
"ñeifupjvx000rwe2m2zuba1z9FqyR2dSL"
Pass status:<br><br> - Valid: A valid pass. It can be checked in correctly.<br><br> - Pending: A pass pending to be accepted by the organizer. It can't be checked in.<br><br> - Rejected: A rejected pass by the organizer. It can't be checked in.<br>
valid
, pending
, rejected
"valid"
curl --request GET \
--url https://api-alpha.fourvenues.com/integrations/passes/ \
--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",
"email": "my-client-email@fourvenues.com",
"enter": 4,
"for": 7,
"name": "Miguel",
"raised": 0,
"rate_name": "Pase Vip",
"rate_slug": "pase-vip",
"referral_id": "ñeifupjvx000rwe2m2zuba1z9FqyR2dSL",
"status": "valid"
}
]
}