list_issues
Retrieve and filter issues from a Taiga project using session and project IDs to manage and resolve project tasks efficiently.
Instructions
Lists issues within a specific project, optionally filtered.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filters | Yes | ||
project_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filters": {
"title": "filters",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id",
"filters"
],
"title": "list_issuesArguments",
"type": "object"
}