action atlassian_get_resolutions { label: "Get resolutions" description: "Returns a list of all issue resolution values.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: atlassian method: GET path: "/rest/api/3/resolution" encoding: json output: { type: "array" items: { type: "object" description: "Details of an issue resolution." properties: { description: { type: "string" description: "The description of the issue resolution." } id: { type: "string" description: "The ID of the issue resolution." } name: { type: "string" description: "The name of the issue resolution." } self: { type: "string" format: "uri" description: "The URL of the issue resolution." } } additionalProperties: false } } }