get_issue
Retrieve detailed information about a specific issue by its ID using this tool, enabling AI systems to access and manage Taiga project data efficiently.
Instructions
Gets detailed information about a specific issue by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"title": "Issue Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"issue_id"
],
"title": "get_issueArguments",
"type": "object"
}