Introduction
API Reference
- Auth
- Events
- ListRates
- Lists
- Locations
- Organizations
- Payments
- TicketRates
- Tickets
- Webhook Endpoints
Webhooks
- Introduction
- Events
Auth
Get auth information
Get information about your organization and the ones you collaborate with.
GET
/
auth
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
200
application/json
OK
The response is of type object
.
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
}
Assistant
Responses are generated using AI and may contain mistakes.