action atlassian_get_issue_type { label: "Get issue type" description: "Returns an issue type.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) in a project the issue type is associated with or *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: atlassian method: GET path: "/rest/api/3/issuetype/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Details about an issue type." properties: { avatarId: { type: "integer" format: "int64" description: "The ID of the issue type's avatar." } description: { type: "string" description: "The description of the issue type." } entityId: { type: "string" format: "uuid" description: "Unique ID for next-gen projects." } hierarchyLevel: { type: "integer" format: "int32" description: "Hierarchy level of the issue type." } iconUrl: { type: "string" description: "The URL of the issue type's avatar." } id: { type: "string" description: "The ID of the issue type." } name: { type: "string" description: "The name of the issue type." } scope: { description: "Details of the next-gen projects the issue type is available in." type: "object" } self: { type: "string" description: "The URL of these issue type details." } subtask: { type: "boolean" description: "Whether this issue type is used to create subtasks." } } additionalProperties: false } }