Actions19
Overview
This node integrates with the Autentique API, a digital signature platform, to manage folders of documents. Specifically, the Folder - Delete operation allows users to delete a folder by its unique identifier. This is useful for automating document organization workflows where obsolete or empty folders need to be removed programmatically.
Practical examples include:
- Automatically cleaning up project folders after completion.
- Removing temporary folders created during batch document processing.
- Managing folder lifecycle in document management systems integrated with Autentique.
Properties
| Name | Meaning |
|---|---|
| Folder ID | The unique identifier of the folder to delete (e.g., folder_xxxxx). This is required to specify which folder should be deleted. |
Output
The output JSON contains the details of the deleted folder, specifically:
id: The unique identifier of the deleted folder.name: The name of the deleted folder.
This confirms the successful deletion and provides reference information about the removed folder.
No binary data output is involved in this operation.
Example output JSON snippet:
{
"id": "folder_xxxxx",
"name": "Example Folder"
}
Dependencies
- Requires an API key credential for authenticating with the Autentique API.
- The node sends a GraphQL mutation request to the endpoint
https://api.autentique.com.br/v2. - Proper network access to the Autentique API is necessary.
- No additional environment variables are explicitly required beyond the API authentication.
Troubleshooting
Common issues:
- Invalid or missing Folder ID: The operation requires a valid folder ID; ensure it is correctly provided.
- Authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions.
- Network connectivity problems: Ensure the n8n instance can reach the Autentique API endpoint.
- Attempting to delete a non-existent or already deleted folder may result in errors.
Error messages:
- Errors returned from the API typically indicate invalid input or permission issues.
- If the folder ID is incorrect, the API may respond with a not found or similar error.
- Authentication failures will prompt errors related to invalid credentials.
To resolve these, double-check the folder ID, confirm API credentials, and verify network connectivity.
Links and References
- Autentique API Documentation (official API docs for further details)
- GraphQL Mutation Reference (general GraphQL mutation info)
This summary is based on static analysis of the node's source code and property definitions for the Folder resource's Delete operation.