get_issue_severities
Retrieve available issue severities for a specific project in Taiga. Requires session_id and project_id to analyze and manage project tasks effectively.
Instructions
Lists the available severities 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_severitiesArguments",
"type": "object"
}