# Create an advertising zone Create a new advertising zone. New zones do not automatically begin the display of advertisements. Instead zones must be assigned manually to the platform they are meant to appear on (Events App, Website, etc.) using their unique number. The API only ensures that advertisements assigned to a zone adhere to its specified dimensions. Endpoint: POST /zones Version: 3.0.0 Security: SessionKey ## Request fields (application/json): - `name` (string) Unique name of the advertising zone - `description` (string) Text detailing where this zone appears (Events App, Website, etc.) and the type of advertising it will display - `width` (number) The width (in pixels) that advertisements assigned to this zone must adhere to - `height` (number) The height (in pixels) that advertisements assigned to this zone must adhere to ## Response 201 fields (application/json): - `self` (string) URI of the advertising zone resource - `name` (string) Unique name of the advertising zone - `description` (string) Text detailing where this zone appears (Events App, Website, etc.) and the type of advertising it will display - `number` (string) System generated alphanumeric string that uniquely identifies the advertising zone - `width` (number) The width (in pixels) that advertisements assigned to this zone must adhere to - `height` (number) The height (in pixels) that advertisements assigned to this zone must adhere to - `advertisements` (string) URI of the collection of advertisements assigned to this zone ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 409 fields (application/json): - `message` (string) Reason for the given response.