action atlassian_get_notification_scheme { label: "Get notification scheme" description: "Returns a [notification scheme](https://confluence.atlassian.com/x/8YdKLg), including the list of events and the recipients who will receive notifications for those events.\n\n**[Permissions](#permissions) required:** Permission to access Jira, however, the user must have permission to administer at least one project associated with the notification scheme." provider: atlassian method: GET path: "/rest/api/3/notificationscheme/{id}" encoding: json input: { type: "object" properties: { expand: { type: "string" } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" } }