action atlassian_get_issue_types_for_project { label: "Get issue types for project" description: "Returns issue types for a project.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) in the relevant project or *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: atlassian method: GET path: "/rest/api/3/issuetype/project" encoding: json input: { type: "object" properties: { level: { type: "integer" format: "int32" } projectId: { type: "integer" format: "int64" } } required: ["projectId"] 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 } } }