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, specifically enabling users to retrieve multiple records from various CRM entities. The "Get All" operation under the "CRM" resource fetches all or a limited set of items (such as contacts, deals, leads, companies, quotes, invoices, products, or activities) based on user-defined filters, sorting, and selection criteria.
Common scenarios include:
- Exporting all contacts or deals for reporting or backup.
- Synchronizing CRM data with other systems by fetching all relevant records.
- Filtering and sorting CRM entities to analyze specific subsets, e.g., all deals created after a certain date.
Practical example:
- A sales manager wants to pull all deals sorted by creation date descending, filtering only those with a title containing "Q2 Campaign", to analyze pipeline progress.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: - OAuth2 (recommended for production) - Webhook (simpler but less secure) - API Key authentication |
| Entity | The CRM entity type to work with. Options include: - Contact - Deal - Lead - Company - Quote - Invoice - Product - Activity |
| Return All | Boolean flag indicating whether to return all results or limit the output. If false, limits results according to Max pages to load. |
| Max pages to load | Maximum number of pages to load when Return All is false. Each page contains up to 50 items. This controls pagination depth to avoid excessive data retrieval. |
| Options | Additional options to customize the query: - Select: Fields to return, specified as JSON array or comma-separated string (e.g., ["ID","TITLE","NAME"] or ID,TITLE,NAME) - Filter: Filter criteria in JSON format (e.g., {"TITLE": "Test", ">DATE_CREATE": "2023-01-01"}) - Order: Sort order in JSON format (e.g., {"DATE_CREATE": "DESC", "ID": "ASC"}) |
Output
The node outputs an array of JSON objects representing the retrieved CRM records matching the query parameters. Each object corresponds to one record of the selected entity type and includes fields as specified by the "Select" option or defaults to standard fields if not specified.
If binary data were involved (not applicable here), it would be summarized accordingly, but this node focuses on JSON data output.
Example output snippet (conceptual):
[
{
"ID": "123",
"TITLE": "Sample Deal",
"DATE_CREATE": "2023-04-01T12:00:00Z",
"ASSIGNED_BY_ID": "45"
},
{
"ID": "124",
"TITLE": "Another Deal",
"DATE_CREATE": "2023-04-02T08:30:00Z",
"ASSIGNED_BY_ID": "46"
}
]
Dependencies
- Requires connection to Bitrix24 CRM via one of the supported authentication methods (OAuth2, webhook URL, or API key).
- Proper credentials must be configured in n8n for the chosen authentication method.
- Network access to Bitrix24 API endpoints.
- No additional external libraries beyond those bundled with the node.
Troubleshooting
Common issues:
- Authentication failures due to incorrect or expired credentials.
- API rate limits or pagination limits causing incomplete data retrieval.
- Malformed filter, select, or order JSON strings leading to API errors.
- Selecting unsupported fields or entity types.
Error messages:
- Errors returned from Bitrix24 API will be surfaced with their message in the output JSON under an
errorfield if "Continue On Fail" is enabled. - Typical error:
"Failed to load CRM fields"or"Failed to load deal categories"indicate issues fetching metadata, often due to permission or connectivity problems. "Invalid filter format"or similar indicates JSON syntax errors in filter/order/select inputs.
- Errors returned from Bitrix24 API will be surfaced with their message in the output JSON under an
Resolutions:
- Verify and refresh credentials.
- Validate JSON syntax in filter, select, and order properties.
- Limit the number of pages loaded if hitting API limits.
- Check Bitrix24 user permissions for accessing requested entities.