Actions43
- Space Actions
- Page Actions
- Template Actions
- Search Actions
- Comment Actions
- Get Page Footer Comments
- Get Page Inline Comments
- Get Blog Post Footer Comments
- Get Blog Post Inline Comments
- Get Custom Content Comments
- Get Footer Comments
- Create Footer Comment
- Get Footer Comment By Id
- Update Footer Comment
- Delete Footer Comment
- Get Footer Comment Children
- Get Inline Comments
- Create Inline Comment
- Get Inline Comment By Id
- Update Inline Comment
- Delete Inline Comment
- Get Inline Comment Children
- Label Actions
Overview
The "Get Page Inline Comments" operation of the Comment resource in this Confluence Cloud node retrieves the root inline comments for a specific page by its ID. Inline comments are comments attached directly to specific parts of the page content, often used for detailed feedback or discussions on particular text segments.
This operation is useful when you want to programmatically fetch all inline comments made on a Confluence page, for example, to review feedback, aggregate comments for reporting, or synchronize comments with other systems.
Practical examples:
- Automatically collecting all inline comments from a page to send a summary email.
- Integrating Confluence inline comments into a project management tool for tracking.
- Archiving inline comments externally before deleting or updating pages.
Properties
| Name | Meaning |
|---|---|
| Id | The ID of the page for which inline comments should be returned. This is a required numeric identifier specifying the target page. |
| Additional Fields | Optional collection of additional query parameters to refine the request: - Body Format: The content format type to return in the body field of each comment (e.g., storage, view). - Status: Filter comments by their status. Options: Current, Archived, Trashed, Deleted, Historical, Draft. - Resolution Status: Filter comments by resolution state. Options: Resolved, Open, Dangling, Reopened. - Sort: Field name to sort the results by. |
Output
The output JSON contains an array of inline comment objects corresponding to the specified page. Each comment object includes details such as the comment body (in the requested format), status, resolution status, author information, timestamps, and potentially nested replies if expanded.
If the body-format parameter is specified, the comment's body content will be returned in that format under the body field.
No binary data output is involved in this operation.
Dependencies
- Requires access to a Confluence Cloud instance via its REST API.
- Requires an API authentication token credential configured in n8n to authorize requests.
- The base URL for API requests is derived from the user's Confluence domain credential.
- Permissions: The authenticated user must have permission to view the content of the page and its corresponding space to retrieve inline comments.
Troubleshooting
Common issues:
- Invalid or missing page ID: Ensure the
Idproperty is set correctly to a valid page ID. - Insufficient permissions: The user must have view permissions on the page and space; otherwise, the API will deny access.
- Network or authentication errors: Verify API credentials and network connectivity to the Confluence instance.
- Invalid or missing page ID: Ensure the
Common error messages:
- 404 Not Found: The specified page ID does not exist or is inaccessible.
- 401 Unauthorized / 403 Forbidden: Authentication failed or insufficient permissions.
- 400 Bad Request: Invalid query parameters, e.g., unsupported
body-formator invalid filter values.
Resolving these typically involves verifying input parameters, checking user permissions, and ensuring correct API credentials.