fizzy_comment
Manage comments on Fizzy kanban cards: create new comments, list existing ones, edit comments, or delete them as needed.
Instructions
Manage comments on a card: create, list, update, or delete.
Actions:
create(default): Post a new commentlist: Get all comments on a cardupdate: Edit an existing comment (requirescomment_id+body)delete: Remove a comment (requirescomment_id)
Arguments:
action(optional): "create" | "list" | "update" | "delete" (default: "create")account_slug(optional): Uses session default if omittedcard_number(required): Card numbercomment_id(optional): Required for update/deletebody(optional): Comment body in markdown. Required for create/update
Returns: JSON with comment details, list of comments, or deletion confirmation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform. | create |
| account_slug | No | Account slug. Uses default if omitted. | |
| card_number | Yes | Card number. | |
| comment_id | No | Comment ID. Required for update/delete. | |
| body | No | Comment body in markdown (1-10000 chars). Required for create/update. |