Locations
Get location
Introduction
API Reference
- Auth
- Events
- ListRates
- Lists
- Locations
- Organizations
- Payments
- TicketRates
- Tickets
- Webhook Endpoints
Webhooks
- Introduction
- Events
Locations
Get location
Get location
GET
/
locations
/
{id}
curl --request GET \
--url https://channels-service-alpha.fourvenues.com/locations/{id} \
--header 'X-Api-Key: <api-key>'
{
"data": {
"unic_id": "orgAbcdefghi1234567890-locAbcdefghi1234567890",
"location_id": "5e4f4b1b1f6b4b001f6b4b001",
"organization_id": "5e4f4b1b1f6b4b001f6b4b001",
"name": "Valencia",
"address": "Carrer de Salamanca",
"number": "43",
"city": "Valencia",
"country": "Spain",
"full_address": "Carrer de Salamanca, 43, Valencia, Spain",
"latitude": 39.4651339,
"longitude": -0.3658872,
"timezone": "Europe/Madrid"
},
"success": true
}
Authorizations
Path Parameters
Location id to get
Query Parameters
Filter the events by organization id.
Response
200
application/json
OK
Complete information of an specific location. Also contains timezone information.
Unique identifier of the location inside an organization.
Example:
"orgAbcdefghi1234567890-locAbcdefghi1234567890"
Unique identifier of the location.
Example:
"5e4f4b1b1f6b4b001f6b4b001"
Unique identifier of the organization.
Example:
"5e4f4b1b1f6b4b001f6b4b001"
Location's name in the organization.
Example:
"Valencia"
Location's addresss.
Example:
"Carrer de Salamanca"
Number of the address.
Example:
"43"
Location's city.
Example:
"Valencia"
Location's country.
Example:
"Spain"
Full address of the location.
Example:
"Carrer de Salamanca, 43, Valencia, Spain"
Location's latitude.
Example:
39.4651339
Location's longitude.
Example:
-0.3658872
Location's timezone.
Example:
"Europe/Madrid"
curl --request GET \
--url https://channels-service-alpha.fourvenues.com/locations/{id} \
--header 'X-Api-Key: <api-key>'
{
"data": {
"unic_id": "orgAbcdefghi1234567890-locAbcdefghi1234567890",
"location_id": "5e4f4b1b1f6b4b001f6b4b001",
"organization_id": "5e4f4b1b1f6b4b001f6b4b001",
"name": "Valencia",
"address": "Carrer de Salamanca",
"number": "43",
"city": "Valencia",
"country": "Spain",
"full_address": "Carrer de Salamanca, 43, Valencia, Spain",
"latitude": 39.4651339,
"longitude": -0.3658872,
"timezone": "Europe/Madrid"
},
"success": true
}