get_issue_priorities
Retrieve available issue priorities for a specific project in Taiga to streamline issue management and categorization. Requires session ID and project ID for access.
Instructions
Lists the available priorities for issues within a specific project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id"
],
"title": "get_issue_prioritiesArguments",
"type": "object"
}