action confluence_get_banner { label: "Get announcement banner configuration" description: "Returns the current announcement banner configuration.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: confluence method: GET path: "/rest/api/3/announcementBanner" encoding: json output: { type: "object" description: "Announcement banner configuration." properties: { hashId: { type: "string" description: "Hash of the banner data. The client detects updates by comparing hash IDs." } isDismissible: { type: "boolean" description: "Flag indicating if the announcement banner can be dismissed by the user." } isEnabled: { type: "boolean" description: "Flag indicating if the announcement banner is enabled or not." } message: { type: "string" description: "The text on the announcement banner." } visibility: { type: "string" description: "Visibility of the announcement banner." enum: ["PUBLIC", "PRIVATE"] } } additionalProperties: false } }