Autentique icon

Autentique

Trabalhe com dados da API do Autentique para assinaturas digitais

Overview

This node integrates with the Autentique API, a digital signature platform, to manage document folders and other related resources. Specifically, the "Folder" resource with the "Create" operation allows users to create new folders within their Autentique account. This is useful for organizing documents into categorized folders, such as contracts, invoices, or project files.

Practical examples:

  • Automatically creating a folder named "Contracts 2024" to store all contract documents signed in 2024.
  • Organizing documents by client or project by creating dedicated folders dynamically during workflow execution.

Properties

Name Meaning
Folder Name The name of the folder to create. Example: "Contratos 2024"

Output

The output JSON contains the newly created folder's details returned from the Autentique API, including:

  • id: The unique identifier of the created folder.
  • name: The name of the folder.
  • created_at: Timestamp when the folder was created.

This output can be used downstream in workflows to reference the folder ID for further operations like moving documents into this folder.

Dependencies

  • Requires an API key credential for authenticating requests to the Autentique API.
  • The node sends GraphQL requests to the endpoint https://api.autentique.com.br/v2.
  • Proper configuration of the API key credential in n8n is necessary for successful communication.

Troubleshooting

  • Common issues:

    • Missing or invalid API key credential will cause authentication failures.
    • Providing an empty or invalid folder name will likely result in an error from the API.
    • Network connectivity issues may prevent reaching the Autentique API endpoint.
  • Error messages:

    • Authentication errors typically indicate problems with the API key; verify the credential setup.
    • Validation errors from the API may mention missing required fields like folder name.
    • Timeout or network errors suggest checking internet connection or API availability.

Links and References

Discussion