action atlassian_get_priority { label: "Get priority" description: "Returns an issue priority.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: atlassian method: GET path: "/rest/api/3/priority/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { 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." } } } }