Introduction
API Reference
- Auth
- Events
- ListRates
- Lists
- Locations
- Organizations
- Payments
- TicketRates
- Tickets
- Webhook Endpoints
Webhooks
- Introduction
- Events
Get auth information
Get information about your organization and the ones you collaborate with.
curl --request GET \
--url https://channels-service-alpha.fourvenues.com/auth \
--header 'X-Api-Key: <api-key>'
{
"data": {
"message": "Authed",
"channel": {
"_id": "org_channel_123",
"name": "My Channel",
"slug": "my-channel",
"hosts": [
{
"_id": "org123",
"name": "My organization.",
"slug": "my-organization.",
"created_at": "2022-01-01T00:00:00Z"
}
],
"anfitrions": [
{
"_id": "org123",
"name": "My organization.",
"slug": "my-organization.",
"created_at": "2022-01-01T00:00:00Z"
}
],
"created_at": "2024-10-01T00:00:00Z"
}
},
"success": true
}
Authorizations
Response
"Authed"
Channel's unique identifier.
"org_channel_123"
Channel's name.
"My Channel"
Channel's URL-friendly identifier.
"my-channel"
Array of organizations you collaborate with.
Basic information of the organizations that you have access.
Organization's unique identifier.
"org123"
Organization's name.
"My organization."
Organization's URL-friendly identifier.
"my-organization."
Date and time when the organization was created.
"2022-01-01T00:00:00Z"
Date and time when the channel was created.
"2024-10-01T00:00:00Z"
Array of organizations you collaborate with.
Basic information of the organizations that you have access.
Organization's unique identifier.
"org123"
Organization's name.
"My organization."
Organization's URL-friendly identifier.
"my-organization."
Date and time when the organization was created.
"2022-01-01T00:00:00Z"
true
curl --request GET \
--url https://channels-service-alpha.fourvenues.com/auth \
--header 'X-Api-Key: <api-key>'
{
"data": {
"message": "Authed",
"channel": {
"_id": "org_channel_123",
"name": "My Channel",
"slug": "my-channel",
"hosts": [
{
"_id": "org123",
"name": "My organization.",
"slug": "my-organization.",
"created_at": "2022-01-01T00:00:00Z"
}
],
"anfitrions": [
{
"_id": "org123",
"name": "My organization.",
"slug": "my-organization.",
"created_at": "2022-01-01T00:00:00Z"
}
],
"created_at": "2024-10-01T00:00:00Z"
}
},
"success": true
}