Skip to content

Create an event venue

Request

Create an approved venue that can stage events. Once created, the venue can be selected as hosting new events added to the system.

Security
SessionKey(Required scopes: administrator)
Bodyapplication/json
namestringrequired

Name of the event venue

regionstring^\d{14}$required

Unique identifier of the region in which this venue is located

latitudenumber, (float)required

Global latitude of the event venue's location

longitudenumber, (float)required

Global longitude of the event venue's location

addressstringrequired

Text representation of the event venue's address

curl -i -X POST \
  https://docs.ticketingevents.com/_mock/openapi/venues \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY_HERE' \
  -d '{
    "name": "Vought Tower",
    "region": "19290238432215",
    "longitude": -73.99214,
    "latitude": 40.75518,
    "address": "7th Ave, Manhattan, New York"
  }'

Responses

The new venue was successfully created.

Bodyapplication/json
selfstring

URI of the venue resource

namestring

Name of the event venue

regionobject(response-6)

URI of the region resource related to this venue

latitudenumber, (float)

Global latitude of the event venue's location

longitudenumber, (float)

Global longitude of the event venue's location

addressstring

Text representation of the event venue's address

mapstring, (uri)

URI to a static Google Maps image of the event venue's location

Response
{ "self": "/venues/16878146473429", "name": "Vought Tower", "region": { "self": "/regions/19290238432215", "name": "Antigua and Barbuda", "country": "Antigua and Barbuda", "district": "", "city": "", "icon": "https://restfulcountries.com/assets/images/flags/Antigua-And-Barbuda.png" }, "longitude": -73.99214, "latitude": 40.75518, "address": "7th Ave, Manhattan, New York", "map": "https://maps.googleapis.com/maps/api/staticmap?center=40.75518,-73.99214&zoom=15&size=600x300&maptype=roadmap&markers=color:red%7C40.75518,-73.99214&key=AIzaSyCyLy8bOLUTLbQLVQFwf1eVO2UIVO8_4kQ&signature=IowClV__Bha7DFVe7TIG-osgyDE=" }