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 save notes on the Timeline resource. It supports multiple authentication methods including OAuth2, webhook URLs, and API keys, making it flexible for different security and deployment scenarios.
Typical use cases include:
- Automatically adding notes or comments to a Bitrix24 timeline entry as part of a CRM workflow.
- Logging interactions or updates related to deals, contacts, or other CRM entities.
- Enhancing automation by programmatically saving structured note data in Bitrix24 timelines.
For example, a sales automation workflow could use this node to append meeting notes or call summaries directly into the Bitrix24 timeline associated with a lead or deal.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method used to authenticate with Bitrix24: OAuth2 (recommended), Webhook URL (simpler), or API Key |
| Note Data | JSON-formatted data representing the note content to be saved on the timeline |
| Options | Additional optional parameters: |
| Filter | JSON object specifying filter criteria (not typically used for saving notes) |
| Order | JSON object defining sort order (not typically used for saving notes) |
| Start | Number indicating start position for pagination (not typically used for saving notes) |
Output
The node outputs an array of items where each item contains a json field representing the response from Bitrix24 after attempting to save the note. The exact structure depends on the Bitrix24 API response but generally includes confirmation details about the saved note.
If an error occurs and the node is configured to continue on failure, the output will contain an item with an error message, the resource name, and a timestamp.
No binary data output is indicated.
Dependencies
- Requires valid authentication credentials for Bitrix24 via one of the supported methods (OAuth2 token, webhook URL, or API key).
- Relies on Bitrix24's REST API endpoints to perform operations.
- No additional external libraries beyond those bundled are required.
- Proper configuration of credentials within n8n is necessary for successful operation.
Troubleshooting
- Authentication errors: Ensure that the selected authentication method is correctly configured and the credentials are valid. OAuth2 tokens may expire and require refresh.
- Invalid Note Data: The
noteDataproperty must be valid JSON matching Bitrix24's expected format for timeline notes. Malformed JSON or missing required fields can cause API errors. - API rate limits or connectivity issues: Network problems or Bitrix24 API rate limiting can cause failures. Retrying or checking network access may help.
- Error messages in output: If the node returns an error object in the output, inspect the
errormessage for clues. Common messages relate to permission issues, invalid parameters, or authentication failures. - Continue On Fail behavior: When enabled, errors do not stop the workflow but are returned as part of the output for handling downstream.