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 integrates with the Bitrix24 CRM and business platform, allowing users to interact with various Bitrix24 resources programmatically. Specifically, for the Document Generator resource with the Get Regions operation, it retrieves region-related data from Bitrix24.
Common scenarios where this node is beneficial include automating workflows that require fetching regional information for document generation, customer segmentation, or localization tasks within Bitrix24. For example, a user might want to generate documents customized by region or filter CRM records based on geographic regions.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24. Options: - OAuth2 (recommended for production) - Webhook (simpler but less secure) - API Key |
Output
The node outputs an array of JSON objects representing the requested data from Bitrix24. For the Get Regions operation under the Document Generator resource, the output JSON will contain region details as returned by the Bitrix24 API.
If the node supports binary data output (not explicitly shown in the provided code), it would typically represent files or attachments related to the document generation process. However, based on the static analysis, this node primarily outputs JSON data.
Dependencies
Requires connection to Bitrix24 via one of the supported authentication methods:
- OAuth2 authentication token
- Webhook URL
- API key credential
The node depends on internal helper functions (
makeStandardBitrix24Call) to perform API calls to Bitrix24 endpoints.No additional external services are required beyond Bitrix24 itself.
Troubleshooting
Common Issues:
- Authentication failures due to incorrect or expired credentials.
- API rate limits or permission issues from Bitrix24 side.
- Network connectivity problems preventing API calls.
Error Messages:
- Errors thrown during execution will include the error message from Bitrix24 or the HTTP request.
- If
continueOnFailis enabled, errors are returned as part of the output JSON with fieldserror,resource, andtimestamp.
Resolution Tips:
- Verify that the selected authentication method is correctly configured and valid.
- Ensure the Bitrix24 account has sufficient permissions to access the requested resource.
- Check network connectivity and firewall settings.
- Enable
continueOnFailcautiously to handle errors gracefully in workflows.