Actions18
Overview
This node integrates with the Autentique API, a digital signature platform, to manage folders among other resources. Specifically, the "Folder - Create" operation allows users to create a new folder 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 that year.
- Organizing client documents by creating folders dynamically based on client names or projects.
Properties
| Name | Meaning |
|---|---|
| Folder Name | The name of the folder to create. For example, "Contratos 2024". |
Output
The output JSON contains the newly created folder's details returned from the Autentique API:
id: The unique identifier of the created folder.name: The name of the folder as provided.created_at: Timestamp when the folder was created.
This output can be used downstream to reference the folder for document organization or further operations.
Dependencies
- Requires an API key credential for authenticating with 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 requests.
Troubleshooting
- Authentication errors: Ensure the API key credential is correctly configured and has sufficient permissions.
- Invalid folder name: The folder name must be a non-empty string; empty or invalid names will cause the API to reject the request.
- API connectivity issues: Network problems or incorrect base URL configuration may prevent communication with the Autentique API.
- Unexpected API errors: Check the error message returned by the API for details; it might indicate quota limits or malformed requests.
Links and References
- Autentique API Documentation (official API docs for more details on folder management)
- n8n Documentation (for general guidance on using credentials and HTTP requests)