Skip to content

manage_comments

Unified tool for managing footer comments, inline comments, and replies on Confluence pages.

ParameterTypeRequiredDescription
actionstringYesSee actions below
page_idstringVariesPage ID
comment_idstringVariesComment ID
bodystringVariesComment body in storage format
limitintNoResults per page (default 25)
cursorstringNoPagination cursor

List footer comments on a page.

Required: page_id

{
"action": "list_footer",
"page_id": "12345678"
}

Response:

[
{
"id": "99887766",
"type": "footer",
"author_id": "5b10ac...",
"body": "Looks good, approved!",
"created": "2025-03-01T10:00:00Z",
"status": "current"
}
]

List inline comments on a page. Includes the highlighted text selection.

Required: page_id

{
"action": "list_inline",
"page_id": "12345678"
}

Response:

[
{
"id": "99887767",
"type": "inline",
"author_id": "5b10ac...",
"body": "Should we update this section?",
"created": "2025-03-01T11:00:00Z",
"status": "current",
"inline_selection": "the system architecture"
}
]

Get replies to a comment.

Required: comment_id

{
"action": "get_replies",
"comment_id": "99887767"
}

Add a footer comment to a page.

Required: page_id, body

{
"action": "add_footer",
"page_id": "12345678",
"body": "<p>Great work on this document!</p>"
}

Reply to an existing comment.

Required: comment_id, body

{
"action": "reply",
"comment_id": "99887767",
"body": "<p>Yes, I'll update it this week.</p>"
}