# Create an event venue Create an approved venue that can stage events. Once created, the venue can be selected as hosting new events added to the system. Endpoint: POST /venues Version: 3.0.0 Security: SessionKey ## Request fields (application/json): - `name` (string, required) Name of the event venue - `region` (string, required) Unique identifier of the region in which this venue is located - `latitude` (number, required) Global latitude of the event venue's location - `longitude` (number, required) Global longitude of the event venue's location - `address` (string, required) Text representation of the event venue's address ## Response 201 fields (application/json): - `self` (string) URI of the venue resource - `name` (string) Name of the event venue - `region` (string) URI of the region resource related to this venue - `latitude` (number) Global latitude of the event venue's location - `longitude` (number) Global longitude of the event venue's location - `address` (string) Text representation of the event venue's address - `map` (string) URI to a static Google Maps image of the event venue's location ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 409 fields (application/json): - `message` (string) Reason for the given response.