get_issue
Retrieve detailed information about a specific issue in Backlog projects using its ID or key for efficient tracking and management.
Instructions
Returns information about a specific issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueIdOrKey | Yes | Issue ID or issue key |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issueIdOrKey": {
"description": "Issue ID or issue key",
"type": [
"string",
"number"
]
}
},
"required": [
"issueIdOrKey"
],
"type": "object"
}