list_epics
Retrieve and filter epics from a Taiga project using session and project IDs to streamline project management and task organization.
Instructions
Lists epics 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_epicsArguments",
"type": "object"
}