paperclip_get_approval
Retrieve a specific approval request by its UUID to check its current status, type, and payload before taking action.
Instructions
Get a single approval request by ID. Linked issues are not included in this response.
Args:
approvalId: string — Approval UUID (example: "apr_abc123")
Returns: Approval object: id, type, status, payload, requestedByAgentId, createdAt, updatedAt.
Examples:
Use when: checking the current status or payload of a specific approval before acting on it
Don't use when: you need a list of approvals — use paperclip_list_approvals with a status filter
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 | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |