Actions20
- Calls Actions
- Campaigns Actions
- Contacts Actions
- Agents Actions
- Queues Actions
- Reports Actions
- Webhooks Actions
Overview
This node integrates with the Talknbox VE API to manage campaigns and other related resources. Specifically, the Campaigns - Get operation retrieves detailed information about a single campaign by its unique Campaign ID. This is useful when you want to fetch the current configuration, status, or metadata of a specific campaign within your Talknbox VE account.
Common scenarios:
- Fetching campaign details before updating or starting it.
- Displaying campaign information in dashboards or reports.
- Verifying campaign existence or status programmatically.
Example:
You have a campaign ID and want to retrieve its name, pacing, status, and other details to decide whether to start or modify it.
Properties
| Name | Meaning |
|---|---|
| Campaign ID | The unique identifier of the campaign to retrieve. This is a required string input. |
Output
The node outputs a JSON object representing the campaign details as returned by the Talknbox VE API. The exact structure depends on the API response but typically includes fields such as:
- Campaign ID
- Name
- Pacing (call rate or speed)
- Status (e.g., active, stopped)
- Other metadata related to the campaign
The output is accessible in the json property of the node's output data.
Dependencies
- Requires an API key credential for Talknbox VE API authentication.
- The base URL for the API is configured in the credential.
- The node uses HTTP requests with automatic retry logic for rate limiting (HTTP 429).
Troubleshooting
Error: "Campaign ID is required"
Ensure you provide a valid Campaign ID string in the input property.HTTP 429 Too Many Requests
The node automatically retries after the rate limit reset time. If you encounter frequent rate limits, consider reducing request frequency.Authentication errors
Verify that the API key credential is correctly configured and has sufficient permissions.Network or API errors
Check your network connection and the Talknbox VE API status.
Links and References
- Talknbox VE API Documentation (Assumed, please replace with actual URL)
- n8n HTTP Request Node documentation for understanding request options and error handling.