# Add a supported region Add a supported region to the TickeTing system. Any venue created needs to reference the region in which it is located. Events staged at this venue will be grouped within the related region, and are displayed to users based on their regional preference. Endpoint: POST /regions Version: 3.0.0 Security: SessionKey ## Request fields (application/json): - `name` (string, required) Unique name of the region - `country` (string, required) Country in which the region is located - `district` (string) Parish, state, province, county, etc. in which the region is located - `city` (string) City, town or village in which the region is located ## Response 201 fields (application/json): - `self` (string) URI of the region resource - `name` (string) Unique name of the region - `country` (string) Country in which the region is located - `district` (string) Parish, state, province, county, etc. in which the region is located - `city` (string) City, town or village in which the region is located - `icon` (string) URI of an icon that represents the region (e.g. flag) ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 409 fields (application/json): - `message` (string) Reason for the given response.