Actions5
- Call Actions
- Message Actions
- Account Actions
Overview
This node interacts with the BulkVS API to retrieve call records. Specifically, the 'Get Call Records' operation fetches voice call records within a specified date range and limits the number of records returned. This is useful for users who want to analyze or monitor call activity over a period, such as for reporting or auditing purposes.
Use Case Examples
- A user wants to retrieve all call records from the past week to analyze call volume and duration.
- A business needs to fetch call records between two specific dates to reconcile call logs with billing data.
Properties
| Name | Meaning |
|---|---|
| Start Date | The start date for querying call records, defining the beginning of the date range to fetch records from. |
| End Date | The end date for querying call records, defining the end of the date range to fetch records up to. |
| Limit | The maximum number of call records to return in the response. |
Output
JSON
- ``
callId- Unique identifier of the call record.from- The phone number from which the call was made.to- The phone number to which the call was made.startTime- Timestamp when the call started.endTime- Timestamp when the call ended.duration- Duration of the call in seconds.status- Status of the call (e.g., completed, missed, failed).
Dependencies
- Requires an API key credential for BulkVS API authentication.
Troubleshooting
- Common issues include invalid date formats or date ranges that return no records. Ensure the start date is before the end date and both are in the correct format.
- API authentication errors may occur if the API key credential is missing or invalid. Verify the credential configuration in n8n.
- Rate limiting or network errors from the BulkVS API can cause request failures. Retry or check network connectivity if errors occur.
Links
- BulkVS API Documentation - Official API documentation for BulkVS, detailing endpoints and usage.