Actions290
- Task Actions
- Direct API Actions
- CRM Actions
- User Actions
- SPA Actions
- Activity Actions
- Automation Actions
- Document Generator Actions
- Data Storage Actions
- Get Entity
- Add Entity
- Update Entity
- Delete Entity
- Get Entity Rights
- Get Entity Sections
- Add Entity Section
- Update Entity Section
- Delete Entity Section
- Get Entity Item
- Add Entity Item
- Update Entity Item
- Delete Entity Item
- Get Entity Item Properties
- Add Entity Item Property
- Update Entity Item Property
- Delete Entity Item Property
- Chat Actions
- User Field Actions
- File Actions
- User Field Config Actions
- Duplicate Actions
- Timeline Actions
- Disk Actions
- Upload File
- Download File
- Delete File
- Get File Info
- List Files
- Create Folder
- Delete Folder
- Get Storage Info
- Get Storages
- Get Storage
- Get Folders
- Get Folder
- Add Folder
- Update Folder
- Copy Folder
- Move Folder
- Rename Folder
- Get Files
- Get File
- Copy File
- Move File
- Rename File
- Share Item
- Get Shared Items
- Get Sharing Rights
- Update Sharing Rights
- Workflow Actions
- Status Actions
- Calendar Actions
- Chatbot Actions
- Events Actions
- Lists Actions
- Product Actions
- Open Lines Actions
- Telephony Actions
- Register External Call
- Finish External Call
- Hide External Call
- Show External Call
- Search CRM Entities
- Attach Call Record
- Get External Line
- Add External Line
- Update External Line
- Delete External Line
- Get Voximplant Statistics
- Get Voximplant Line
- Get Voximplant SIP Connector
- Get Voximplant SIP Line
- Add Voximplant SIP Line
- Update Voximplant SIP Line
- Delete Voximplant SIP Line
- Message Service Actions
- Notify Actions
Overview
This node interacts with the Bitrix24 platform, specifically providing access to telephony-related data. The "Get Voximplant Statistics" operation retrieves call statistics from a specified telephony line within a given date range. This is useful for monitoring call activity, analyzing call volumes, and generating reports on telephony usage.
Practical scenarios include:
- Tracking call performance metrics for a specific phone line.
- Generating daily or weekly call statistics for management reporting.
- Filtering and sorting call data to analyze peak usage times or call outcomes.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key. |
| Line ID | The unique identifier of the telephony line for which statistics are requested. |
| Date From | The start date/time for the statistics query (inclusive). |
| Date To | The end date/time for the statistics query (inclusive). |
| Additional Options | Optional parameters including: β’ Filter: JSON object to filter results. β’ Sort: JSON object defining sort order. β’ Start: Number indicating pagination start position. |
Output
The node outputs an array of items where each item's json property contains the retrieved Voximplant statistics data for the specified line and date range. The exact structure depends on the Bitrix24 API response but typically includes call counts, durations, statuses, and other relevant telephony metrics.
If the node supports binary data output (not explicitly shown in the provided code), it would represent any associated media or files related to calls, such as recordings.
Dependencies
- Requires valid authentication credentials for Bitrix24 via one of the supported methods (OAuth2 token, webhook URL, or API key).
- Access to the Bitrix24 telephony API endpoints.
- Proper configuration of the node's credentials in n8n to enable authenticated API calls.
Troubleshooting
Common Issues:
- Invalid or expired authentication credentials will cause API call failures.
- Incorrect or missing Line ID will result in errors or empty responses.
- Date range parameters outside allowed limits may cause no data to be returned.
- Malformed JSON in the filter or sort options can lead to request errors.
Error Messages:
- Errors thrown by the node include the error message from the Bitrix24 API.
- If
continueOnFailis enabled, errors are returned as part of the output JSON with anerrorfield describing the issue.
Resolutions:
- Verify and refresh authentication credentials.
- Ensure the Line ID corresponds to an existing telephony line.
- Validate date inputs and JSON formatting for filters and sorting.
- Check network connectivity and Bitrix24 service status.