Actions35
- 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
Overview
This node operation retrieves a specific footer comment from Confluence Cloud by its unique comment ID. It is useful when you need to fetch detailed information about a particular footer comment on a page, blog post, or other content container within Confluence. This can help in scenarios such as auditing comments, displaying comment details in external systems, or integrating comment data into workflows.
For example, if you want to get the content and metadata of a footer comment to display it in a custom dashboard or to process it further in an automation workflow, this operation allows you to do so by specifying the comment's ID.
Properties
Name | Meaning |
---|---|
Comment Id | The unique numeric identifier of the footer comment to retrieve. This is required. |
Additional Fields | Optional collection of additional parameters to customize the response: |
- Body Format | The format type for the comment body content returned (e.g., storage, view). If specified, the response will include the body content in that format. |
- Version | Retrieve a previously published version of the comment by specifying its version number. |
- Include Properties | Whether to include content properties associated with this footer comment in the response. Limited to 50 results with pagination info. |
- Include Operations | Whether to include operations associated with this footer comment in the response, describing permissions or actions available. |
- Include Likes | Whether to include likes associated with this footer comment in the response. Limited to 50 results with pagination info. |
- Include Versions | Whether to include versions associated with this footer comment in the response. Limited to 50 results with pagination info. |
- Include Version | Whether to include the current version associated with this footer comment in the response. Defaults to true; set to false to omit. |
Output
The output JSON contains the detailed data of the requested footer comment. This includes fields such as:
- The comment's unique ID.
- The body content of the comment, potentially in multiple formats depending on the
body-format
parameter. - Metadata about the comment like creation date, author, status, and versioning information.
- Optionally included related data such as properties, operations, likes, and versions if requested via additional fields.
No binary data is output by this operation.
Dependencies
- Requires an authenticated connection to Confluence Cloud via an API key or OAuth token configured in n8n credentials.
- The base URL for API requests is derived from the user's Confluence domain credential.
- Permissions: The user must have permission to view the content container and its space where the comment resides.
Troubleshooting
- Common issues:
- Invalid or missing Comment Id: The operation requires a valid numeric comment ID; ensure this is provided.
- Permission errors: If the user lacks permission to view the comment or its container, the API will return an authorization error.
- Version not found: Specifying a non-existent version number may result in an error or empty response.
- Error messages:
- "404 Not Found": The comment ID does not exist or is inaccessible.
- "403 Forbidden": Insufficient permissions to access the comment.
- "400 Bad Request": Invalid query parameters, e.g., malformed
body-format
or version number.
- Resolutions:
- Verify the comment ID is correct and exists.
- Check user permissions in Confluence.
- Confirm optional parameters are valid and supported.