Talknbox VE

Integracja z Talknbox VE API

Actions20

Overview

This node integrates with the Talknbox VE API, allowing users to manage various resources such as calls, campaigns, contacts, agents, queues, reports, webhooks, and system information. Specifically for the Contacts - Delete operation, it enables the deletion of a contact by its unique Contact ID.

Typical use cases include:

  • Removing outdated or incorrect contact entries from your Talknbox VE contact list.
  • Automating cleanup processes in contact management workflows.
  • Integrating contact deletion into broader campaign or CRM automation pipelines.

For example, you might use this node to delete a contact after they unsubscribe or when their data needs to be purged for compliance reasons.

Properties

Name Meaning
Contact ID The unique identifier of the contact to delete. This is a required string input.

Output

The node outputs a JSON object representing the response from the Talknbox VE API after attempting to delete the contact. Typically, this will confirm whether the deletion was successful.

Example output structure (simplified):

{
  "ok": true
}

If an error occurs, the output JSON will contain an error field with the error message.

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the Talknbox VE API.
  • The base URL for the API is configurable via credentials.
  • The node uses built-in HTTP request helpers with automatic retry on rate limiting (HTTP 429).

Troubleshooting

  • Common issues:

    • Invalid or missing Contact ID will cause the API to reject the request.
    • Network connectivity problems or incorrect API base URL configuration can lead to request failures.
    • Rate limiting errors (HTTP 429) are automatically retried up to 3 times with delay.
  • Error messages:

    • If the contact does not exist, the API may return a 404 error; ensure the Contact ID is correct.
    • Authentication errors indicate invalid or expired API credentials; verify and update the API key.
    • Other API errors will be passed through in the error message; check the API documentation for details.

Links and References

Discussion