action atlassian_get_issue_security_level { label: "Get issue security level" description: "Returns details of an issue security level.\n\nUse [Get issue security scheme](#api-rest-api-3-issuesecurityschemes-id-get) to obtain the IDs of issue security levels associated with the issue security scheme.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** None." provider: atlassian method: GET path: "/rest/api/3/securitylevel/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Details of an issue level security item." properties: { description: { type: "string" description: "The description of the issue level security item." } id: { type: "string" description: "The ID of the issue level security item." } isDefault: { type: "boolean" description: "Whether the issue level security item is the default." } issueSecuritySchemeId: { type: "string" description: "The ID of the issue level security scheme." } name: { type: "string" description: "The name of the issue level security item." } self: { type: "string" description: "The URL of the issue level security item." } } additionalProperties: false } }