REST API Venues
REST API Event Types
GET /v1/venues
Returns the list of all active venues.
Request:
Request will expect the user to send the APIToken in the request header which re-authenticates the user with each request.
{
"success": "true",
"result": [
{
"id": "12345",
"name": "Board Room"
},
{
"id": "23412",
"name": "Grand Hall"
},
{
"id": "452345",
"name": "Estate Room"
}]
}