Autentique icon

Autentique

Trabalhe com dados da API do Autentique para assinaturas digitais

Overview

This node integrates with the Autentique API to manage digital document signatures. Specifically, the Resend Signatures operation allows users to resend pending signature notifications for one or more signatures identified by their public IDs. This is useful when signatories have not received or missed the original notification and need a reminder to complete their signing process.

Practical scenarios include:

  • Reminding multiple signatories to sign a contract or agreement.
  • Resending signature requests after updating a document or correcting an email address.
  • Automating follow-ups in workflows where timely signatures are critical.

Properties

Name Meaning
Signature IDs An array of public IDs of the signatures to resend notifications for. Example: ["id1", "id2"].

Output

The output JSON contains the result of the resend operation. The GraphQL mutation returns a boolean indicating success (true) or failure (false). The node outputs this as the main data payload.

No binary data is involved in this operation.

Example output JSON structure:

{
  "json": {
    "resendSignatures": true
  }
}

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 configuration of the API key credential in n8n is necessary for successful requests.

Troubleshooting

  • Invalid or missing Signature IDs: Ensure that the Signature IDs property is a valid JSON array of existing signature public IDs. Invalid IDs will cause the API to reject the request.
  • Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
  • Network or API errors: Check connectivity to the Autentique API endpoint and confirm the service status.
  • Empty response or false return: Indicates the resend operation failed; verify the signature IDs correspond to pending signatures eligible for resending.

Links and References

Discussion