jira_get_statuses
Retrieve Jira workflow statuses like To Do, In Progress, and Done for projects or issue types to understand available transitions and categories.
Instructions
Retrieves available statuses (global or project-specific, e.g., To Do, In Progress, Done). Returns status categories and workflow information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueTypeId | No | Issue type ID to get statuses for specific issue type (requires projectKey) | |
projectKey | No | Project key to get statuses for specific project (optional) |
Input Schema (JSON Schema)
{
"properties": {
"issueTypeId": {
"description": "Issue type ID to get statuses for specific issue type (requires projectKey)",
"type": "string"
},
"projectKey": {
"description": "Project key to get statuses for specific project (optional)",
"type": "string"
}
},
"required": [],
"type": "object"
}