word_resolve_comment
Resolve or reopen a Word comment thread by specifying its ID, updating the comment's status in the .docx file.
Instructions
Mark a Word comment thread as resolved or open.
Resolution state is stored in word/commentsExtended.xml (w15:commentEx@w15:done). If a reply comment ID is supplied, the root thread comment is updated.
Args: file_path: Path to the .docx file comment_id: Comment ID from word_get_comments resolved: True to resolve, False to reopen output_path: Optional output path (defaults to overwriting input)
Returns: Status dictionary with thread resolution details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Path to the .docx file | |
| comment_id | Yes | Comment ID from word_get_comments | |
| resolved | Yes | True to resolve, False to reopen | |
| output_path | No | Optional output path (defaults to overwriting input) |