action atlassian_get_priorities { label: "Get priorities" description: "Returns the list of all issue priorities.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: atlassian method: GET path: "/rest/api/3/priority" encoding: json output: { type: "array" items: { type: "object" description: "An issue priority." properties: { description: { type: "string" description: "The description of the issue priority." } iconUrl: { type: "string" description: "The URL of the icon for the issue priority." } id: { type: "string" description: "The ID of the issue priority." } isDefault: { type: "boolean" description: "Whether this priority is the default." } name: { type: "string" description: "The name of the issue priority." } self: { type: "string" description: "The URL of the issue priority." } statusColor: { type: "string" description: "The color used to indicate the issue priority." } } } } }