Actions19
Overview
This node integrates with the Autentique API to manage digital documents for electronic signatures. Specifically, the Delete Document operation allows users to delete a document by its unique identifier. This is useful in workflows where documents need to be programmatically removed after completion, cancellation, or error correction.
Practical examples include:
- Automatically deleting draft or obsolete contracts from your document management system.
- Cleaning up test or temporary documents created during automated signature flows.
- Removing documents that were uploaded by mistake or are no longer needed.
Properties
| Name | Meaning |
|---|---|
| Document ID | The unique identifier of the document to delete. Example format: doc_xxxxx |
Output
The output JSON contains information about the deleted document, specifically:
{
"id": "UUID of the deleted document",
"name": "Name of the deleted document"
}
This confirms which document was deleted successfully.
The node does not output binary data.
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/graphql. - Proper network access to the Autentique API is necessary.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Document ID will likely result in an error or no deletion.
- Missing or incorrect API authentication credentials will cause authorization failures.
- Network connectivity problems can prevent the request from reaching the API.
Error messages and resolutions:
- "Unauthorized" or similar: Check that the API key credential is correctly configured and valid.
- "Document not found": Verify the Document ID is correct and the document exists.
- "GraphQL errors": Inspect the error details returned by the API; ensure all required parameters are provided.
Links and References
- Autentique API Documentation (official API docs for further details)
- n8n Documentation on Creating Custom Nodes