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 add comments to tasks within Bitrix24. It supports multiple authentication methods including OAuth2, webhook URLs, and API keys, making it flexible for different security and deployment scenarios.
A common use case is automating task collaboration by programmatically adding comments to tasks based on external triggers or workflows. For example, when a customer support ticket is updated in another system, this node can add a comment to the corresponding Bitrix24 task to keep all team members informed.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method used to authenticate with Bitrix24: OAuth2 (recommended), Webhook URL, or API Key. |
| Task ID | The unique identifier of the task to which the comment will be added. |
| Comment Text | The text content of the comment to add to the specified task. |
| Options | Additional optional parameters as JSON objects: Filter, Order, Select, Group, Custom Parameters. |
- Options fields allow advanced customization of the request but are not mandatory for adding a comment.
Output
The node outputs an array of items where each item contains a json object representing the response from Bitrix24 after adding the comment. This typically includes confirmation details about the created comment.
If an error occurs and "Continue On Fail" is enabled, the output will contain an item with an error field describing the issue, along with the resource name and a timestamp.
The node does not output binary data.
Dependencies
- Requires access to a Bitrix24 account with appropriate permissions to add comments to tasks.
- Needs one of the following authentication credentials configured in n8n:
- OAuth2 token credential
- Webhook URL credential
- API key credential
- Uses Bitrix24 REST API endpoints internally to perform operations.
Troubleshooting
Common Issues:
- Invalid or expired authentication credentials will cause authorization failures.
- Incorrect Task ID may result in errors indicating the task was not found.
- Malformed JSON in the "Options" property can cause request failures.
Error Messages:
- Errors returned from Bitrix24 API will be surfaced in the node's output if "Continue On Fail" is enabled.
- Typical messages include authentication errors, permission denied, or invalid parameters.
Resolution Tips:
- Verify that the authentication method and credentials are correctly set up and valid.
- Confirm the Task ID exists and is accessible by the authenticated user.
- Ensure any JSON input in options is well-formed and matches expected schema.