Canva icon

Canva

Trabalhe com a API Connect do Canva para designs e assets

Actions10

Overview

This node integrates with the Canva API to manage and interact with Canva designs. Specifically, the Get Design operation retrieves detailed information about a specific design by its ID. This is useful when you want to fetch metadata or details of an existing design in Canva for further processing, analysis, or automation within your workflows.

Common scenarios:

  • Automatically retrieving design details to update records in a CMS or database.
  • Fetching design metadata before exporting or modifying it.
  • Integrating Canva design data into reporting or notification systems.

Practical example:
You have a workflow that triggers when a new design is created in Canva. Using this node's Get Design operation, you can fetch the full design details by its ID and then use that data to generate reports or send notifications to your team.

Properties

Name Meaning
Design ID The unique identifier of the design to retrieve. This is required to specify which design's details you want to fetch.

Output

The node outputs JSON data representing the detailed information of the requested design. This typically includes all metadata fields returned by the Canva API for a design, such as title, type, creation date, modification date, pages, assets used, and other relevant properties.

If the design contains any binary data (e.g., images), those would be handled separately, but for the Get Design operation, the output is primarily structured JSON describing the design.

Dependencies

  • Requires an API key credential for authenticating with the Canva API.
  • The node uses the Canva REST API endpoint https://api.canva.com/rest/v1.
  • Proper configuration of the API key credential in n8n is necessary.
  • No additional external dependencies beyond the Canva API and valid credentials.

Troubleshooting

  • Invalid Design ID: If the provided Design ID does not exist or is incorrect, the API will return an error indicating the design was not found. Verify the ID is correct.
  • Authentication errors: Ensure the API key credential is valid and has the necessary permissions to access the design.
  • Network issues: Connectivity problems may cause request failures; check network settings and Canva API status.
  • Rate limits: Canva API may enforce rate limits; if exceeded, wait and retry later.

Links and References

Discussion