paperclip_add_approval_comment
Post a markdown comment on an approval request to add context or respond to feedback. Provide the approval ID and comment body.
Instructions
Post a markdown comment on an approval request.
Args:
approvalId: string — Approval UUID (example: "apr_abc123")
body: string — Comment body in markdown (example: "Revised per board feedback: ...")
Returns: Returns the created comment object: id, body, authorId, authorType, createdAt.
Examples:
Use when: adding context to an approval request or responding to board revision feedback
Don't use when: you also want to change the approval status — use paperclip_resubmit_approval or paperclip_approve
Error Handling:
400: validation failure → ensure body is non-empty
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 | |
| body | Yes | Comment body (markdown) |