Autentique icon

Autentique

Trabalhe com dados da API do Autentique para assinaturas digitais

Overview

This node integrates with the Autentique API to manage folders of documents used for digital signatures. Specifically, the Folder - Delete operation allows users to delete a folder by specifying its unique folder ID. This is useful in scenarios where you want to clean up or organize your document storage by removing obsolete or empty folders.

Practical examples:

  • Automatically deleting folders after all documents inside have been processed.
  • Cleaning up test or temporary folders created during workflow executions.
  • Managing folder lifecycle programmatically as part of document management automation.

Properties

Name Meaning
Folder ID The unique identifier of the folder to be deleted (e.g., folder_xxxxx). This property is required to specify which folder should be removed.

Output

The output JSON contains the details of the deleted folder, typically including:

  • id: The ID of the deleted folder.
  • name: The name of the deleted folder.

This confirms successful deletion and provides reference information about the removed folder.

No binary data is output by this operation.

Example output JSON structure:

{
  "id": "folder_xxxxx",
  "name": "Folder Name"
}

Dependencies

  • Requires an API key credential for authenticating with the Autentique API.
  • The node sends GraphQL mutation requests to the Autentique API endpoint at https://api.autentique.com.br/v2.
  • Proper network access to the Autentique API is necessary.
  • The user must have appropriate permissions to delete folders in their Autentique account.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Folder ID will result in an error from the API.
    • Insufficient permissions or expired API credentials can cause authorization failures.
    • Network connectivity problems may prevent the request from reaching the API.
  • Error messages and resolutions:

    • "Folder not found": Verify that the Folder ID is correct and exists in your account.
    • "Unauthorized" or "Authentication failed": Check that the API key credential is valid and has not expired.
    • "Network error" or timeout: Ensure stable internet connection and that the API endpoint is reachable.

Links and References


This summary is based on static analysis of the node's source code and provided input properties, focusing on the Folder resource's Delete operation only.

Discussion