# Creates a new Banner in account scope Creates a new Banner in Account Scope. Endpoint: POST /v1/banners Version: 1.0 Security: x-api-key ## Header parameters: - `Harness-Account` (string) Identifier field of the account the resource is scoped to. This is required for Authorization methods other than the x-api-key header. If you are using the x-api-key header, this can be skipped. ## Request fields (application/json): - `name` (string, required) - `identifier` (string, required) - `enabled` (boolean) - `intent` (string, required) enum for "intent" field in BannerDTO Enum: "INFORMATIONAL", "HIGH", "MEDIUM", "LOW" - `title` (string, required) Banner Title with max length 80 - `message` (string, required) Banner Message with max length 250 - `callToActions` (object) ## Response 201 fields (application/json): - `banner` (object, required) This is the request dto to create a Banner in Harness - `banner.name` (string, required) - `banner.identifier` (string, required) - `banner.enabled` (boolean) - `banner.intent` (string, required) enum for "intent" field in BannerDTO Enum: "INFORMATIONAL", "HIGH", "MEDIUM", "LOW" - `banner.title` (string, required) Banner Title with max length 80 - `banner.message` (string, required) Banner Message with max length 250 - `banner.callToActions` (object) - `created` (integer) - `updated` (integer)