action atlassian_get_issue_all_types { label: "Get all issue types for user" description: "Returns all issue types.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** Issue types are only returned as follows:\n\n * if the user has the *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg), all issue types are returned.\n * if the user has the *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for one or more projects, the issue types associated with the projects the user has permission to browse are returned." provider: atlassian method: GET path: "/rest/api/3/issuetype" encoding: json output: { type: "array" items: { 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 } } }