Confluence Cloud icon

Confluence Cloud

Access to the Confluence Cloud REST API - Auto-generated from OpenAPI

Overview

The "Get Blueprint Templates" operation in the Confluence Cloud node retrieves all blueprint templates available in Confluence. Blueprint templates are predefined page templates provided by Confluence blueprints, which can be global or space-specific. This operation allows users to fetch either all global blueprint templates or those specific to a particular space.

This node operation is useful when you want to:

  • List all blueprint templates available for creating new pages.
  • Retrieve templates to display or select from in automation workflows.
  • Filter templates by space to customize content creation processes.

Example use case:
An organization automates documentation creation and wants to present users with a list of blueprint templates relevant to their project space. Using this operation, they can dynamically fetch and show these templates in a custom app or workflow.

Properties

Name Meaning
Return All Whether to return all blueprint templates or limit the number of results returned.
Limit Maximum number of blueprint templates to return (max 250). Only used if "Return All" is false.
Additional Fields Collection of optional fields:
- Space Key The key of the space to query for blueprint templates. If omitted, global blueprint templates are returned.
- Expand Array of properties to expand in the response. Options: body, body.storage (returns template content in storage format).

Output

The output JSON contains a property named results which is an array of blueprint template objects. Each object represents a blueprint template with its metadata and optionally expanded properties such as the body content.

The structure typically includes:

  • Template ID and name
  • Associated space or global scope
  • Content body (if expanded)
  • Other metadata related to the blueprint template

No binary data is output by this operation.

Dependencies

  • Requires an API authentication token credential configured in n8n to access the Confluence Cloud REST API.
  • The node uses the Confluence Cloud REST API endpoint /wiki/rest/api/template/blueprint.
  • The user must have 'View' permission on the target space to retrieve space-specific blueprints, and 'Can use' global permission to view global blueprints.

Troubleshooting

  • Permission errors: If the node returns authorization errors, verify that the API credentials have sufficient permissions to view the requested blueprints.
  • Empty results: If no templates are returned, check if the specified space key is correct and that blueprints exist for that space.
  • Limit exceeded: The API limits results to 250 per request. Use "Return All" to paginate through all results.
  • Invalid expand values: Ensure that only valid expand options (body, body.storage) are used; invalid values may cause API errors.

Links and References

Discussion