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 platform, specifically allowing users to interact with various Bitrix24 resources such as CRM entities and business platform features. The "Activity" resource with the "Get All" operation enables retrieving multiple activity records from Bitrix24.
Typical use cases include:
- Fetching a list of activities (calls, meetings, tasks, etc.) related to CRM entities for reporting or automation.
- Synchronizing Bitrix24 activities with other systems.
- Filtering and sorting activities based on custom criteria.
For example, a user might retrieve all activities created after a certain date or only those assigned to a specific user, then process or analyze them further in an n8n workflow.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook URL (simpler but less secure), or API Key authentication. |
| Options | Collection of optional parameters to customize the query: |
| - Filter | JSON object specifying filter criteria to narrow down which activities to retrieve. |
| - Select | JSON array listing specific fields to return for each activity. |
| - Order | JSON object defining sort order of the results. |
| - Start | Number indicating the record offset to start selection from (pagination). |
| - Access Token | String token used for authentication if applicable (e.g., OAuth2 access token). |
Output
The node outputs an array of items where each item contains a json property representing an individual activity record retrieved from Bitrix24. The structure of each activity object depends on the selected fields and filters but generally includes standard activity properties such as IDs, timestamps, user assignments, and custom fields.
No binary data output is indicated by the source code.
Example output snippet (conceptual):
[
{
"json": {
"ID": "123",
"SUBJECT": "Call with client",
"DATE_CREATE": "2024-01-01T12:00:00Z",
"ASSIGNED_BY_ID": "45",
...
}
},
...
]
Dependencies
- Requires connection to Bitrix24 via one of the supported authentication methods (OAuth2, webhook URL, or API key).
- Needs appropriate credentials configured in n8n for the chosen authentication method.
- Relies on Bitrix24 API endpoints to fetch activity data.
- No additional external libraries beyond those bundled with the node are required.
Troubleshooting
- Authentication errors: Ensure that the correct authentication method is selected and credentials are valid. For OAuth2, verify token validity and refresh if expired.
- Invalid filter/select/order JSON: The node expects valid JSON strings for these options. Malformed JSON will cause errors. Use JSON validators before input.
- API rate limits or connectivity issues: Bitrix24 may throttle requests or be temporarily unavailable. Retry later or check network connectivity.
- Empty results: Confirm that filter criteria match existing activities; otherwise, no data will be returned.
- Error messages: If the node throws errors during execution, they typically include the Bitrix24 API error message. Review the message for clues (e.g., permission denied, invalid parameters).