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
The node provides integration with the Confluence Cloud REST API, specifically enabling operations on Confluence templates. The "Create Content Template" operation allows users to create new content templates in Confluence. This is useful for automating the creation of reusable page structures or layouts within Confluence spaces or globally.
Typical use cases include:
- Automating the setup of standardized documentation templates.
- Creating custom templates programmatically as part of a content management workflow.
- Managing templates across multiple Confluence spaces without manual UI interaction.
For example, a user can define a JSON structure representing a new template and use this node to create it directly in Confluence, streamlining content standardization.
Properties
Name | Meaning |
---|---|
Request Body | The JSON data representing the content template to be created. This should conform to the Confluence API's expected template format. |
Output
The node outputs the JSON response from the Confluence API after creating the content template. This typically includes details about the newly created template such as its ID, name, associated space (if any), body content, and metadata.
No binary data output is involved.
Dependencies
- Requires an API key credential for authenticating with the Confluence Cloud REST API.
- The node expects the base URL of the Confluence instance to be configured via credentials.
- The user must have appropriate permissions: either 'Admin' permission for the space to create a space template or 'Confluence Administrator' global permission to create a global template.
Troubleshooting
- Permission Errors: If the API returns permission denied errors, verify that the API key has the required admin permissions for the target space or global scope.
- Invalid JSON in Request Body: The request body must be valid JSON matching the Confluence template schema. Malformed JSON will cause parsing errors.
- API Endpoint Issues: Ensure the base URL and domain are correctly set in credentials; incorrect URLs will lead to connection failures.
- Template Creation Limits: Be aware of any Confluence API limits or restrictions on template creation.