paperclip_list_approval_issues
Fetch issues linked to a specific approval to inspect what work items are waiting for approval decision.
Instructions
List issues linked to a specific approval request.
Args:
approvalId: string — Approval UUID (example: "appr_abc123")
limit: integer (optional) — Max issues per page (1–100, default 50)
offset: integer (optional) — Number of issues to skip (default 0)
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Pagination envelope { items: Issue[], total, count, offset, limit, has_more, next_offset }. Each item: id, identifier, title, status, priority, projectId.
Examples:
Use when: inspecting which issues are gated on a pending approval before deciding to approve or reject
Don't use when: you need approval metadata — use paperclip_get_approval for status, type, and payload
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: approval not found → verify ID with paperclip_list_approvals
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| approvalId | Yes | Approval UUID | |
| limit | Yes | Max issues per page (1–100, default 50) | |
| offset | Yes | Number of issues to skip (default 0) | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |