confluence_comment_edit
Edit a Confluence comment's body by providing its ID and new content as inline text or a file path. Supports footer and inline comment types.
Instructions
Edit an existing Confluence comment's body (by comment_id from confluence_comment_list). kind must be "footer" or "inline". The new body replaces the current text; supply it as content (inline) OR content_path (a filesystem path the server reads) — not both. Returns YAML. Mirrors omni-dev atlassian confluence comment edit.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | `"footer"` or `"inline"` — the v2 API uses separate endpoints. | |
| content | No | New markdown body. Converted to ADF. Mutually exclusive with `content_path`; exactly one is required. | |
| comment_id | Yes | Comment ID to edit (from `confluence_comment_list`). | |
| content_path | No | Filesystem path the server reads the new body from, instead of `content`. |