paperclip_get_issue
Retrieve a single issue by ID with full details and ancestor chain. Use to review an issue's complete state before making changes.
Instructions
Get a single issue by ID, including full details and ancestor chain.
Args:
issueId: string — Issue ID or identifier (example: "PAP-42")
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Issue object: id, identifier, title, description, status, priority, assigneeAgentId, projectId, goalId, parentId, labelIds, executionRunId, ancestors, createdAt, updatedAt.
Examples:
Use when: reading a specific issue's full state before making changes
Don't use when: you need a list of issues — use paperclip_list_issues or paperclip_get_inbox instead
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: issue not found → verify ID with paperclip_list_issues
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueId | Yes | Issue ID or identifier (e.g. PAP-42) | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |