paperclip_get_feedback_trace_bundle
Fetch the complete payload and event history for a specific feedback trace by providing its UUID.
Instructions
⚠ Board-only: Fetch the full bundle for a single feedback trace by its UUID.
Args:
traceId: string — Feedback trace UUID (example: "ft_abc123")
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Feedback trace bundle object: traceId, events[], metadata, and related context fields.
Examples:
Use when: retrieving the complete payload and event history for a specific feedback trace
Don't use when: you need to browse traces — use paperclip_list_feedback_traces or paperclip_list_issue_feedback_traces
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
403: permission denied → board-only endpoint, requires board API key
404: trace not found → verify traceId with paperclip_list_feedback_traces
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| traceId | Yes | Feedback trace UUID | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |