Talknbox VE

Integracja z Talknbox VE API

Actions20

Overview

This node integrates with the Talknbox VE API to manage campaigns, calls, contacts, agents, queues, reports, webhooks, and system information. Specifically, for the Campaigns - Create operation, it allows users to create a new campaign by specifying its name and pacing (calls per minute). This is useful in scenarios where you want to automate the creation of calling campaigns for telemarketing, customer outreach, or support follow-ups.

Practical example: Automatically create a new campaign named "Spring Sale" with a pacing of 5 calls per minute to start an outbound call campaign targeting customers interested in seasonal promotions.

Properties

Name Meaning
Name The name of the campaign to be created.
Pacing Campaign pacing expressed as calls per minute. Default is 1.

Output

The node outputs a JSON object representing the response from the Talknbox VE API after creating the campaign. This typically includes details about the newly created campaign such as its ID, name, pacing, status, and other metadata returned by the API.

No binary data output is produced by this operation.

Example output structure (simplified):

{
  "id": "string",
  "name": "string",
  "pacing": 1,
  "status": "string",
  ...
}

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 HTTP requests with automatic retry logic on rate limiting (HTTP 429).

Troubleshooting

  • Rate Limiting Errors (HTTP 429): The node automatically retries up to 3 times with delay based on the x-ratelimit-reset header. If errors persist, consider reducing the pacing or request frequency.
  • Authentication Failures: Ensure that the API key credential is correctly configured and has sufficient permissions.
  • Invalid Input Data: Missing required fields like "Name" will cause errors. Verify all required properties are set.
  • API Endpoint Errors: Check the correctness of the base URL and network connectivity to the Talknbox VE API.

Links and References

Discussion