action atlassian_get_alternative_issue_types { label: "Get alternative issue types" description: "Returns a list of issue types that can be used to replace the issue type. The alternative issue types are those assigned to the same workflow scheme, field configuration scheme, and screen scheme.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** None." provider: atlassian method: GET path: "/rest/api/3/issuetype/{id}/alternatives" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } 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 } } }