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