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)
- Mock serverhttps://docs.ticketingevents.com/_mock/openapi/venues
- QA Serverhttps://qa.ticketingevents.com/v3/venues
- Production Serverhttps://api.ticketingevents.com/v3/venues
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"
}'The new venue was successfully created.
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=" }