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 enabling operations on notifications within Bitrix24. The "Delete Notification" operation under the "Notify" resource allows users to delete a specific notification by its ID. This is useful in scenarios where automated workflows need to manage or clean up notifications programmatically, such as removing outdated alerts, clearing notifications after processing, or managing user notification states.
Practical examples include:
- Automatically deleting a notification once a related task is completed.
- Cleaning up notifications that are no longer relevant to reduce clutter.
- Integrating with other systems to synchronize notification status by deleting them from Bitrix24.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key. |
| Notification ID | The unique identifier of the notification to be deleted. |
| Options | Additional optional parameters for notification handling: |
| - Attachments | JSON array specifying attachments related to the notification. |
| - URL Preview | Boolean indicating whether to show URL preview in the notification. |
| - Sound | Boolean indicating whether to play a sound when the notification is sent. |
| - Push | Boolean indicating whether to send a push notification. |
| Boolean indicating whether to send an email notification. | |
| - Buttons | JSON array defining interactive buttons for the notification. |
| - Confirm Text | Text label for a confirm button in the notification. |
| - Decline Text | Text label for a decline button in the notification. |
| - Offset | Numeric offset for paginating notifications retrieval (not directly relevant for deletion). |
| - Filter | JSON object defining filter criteria for notifications (not directly relevant for deletion). |
| - Order | JSON object defining sort order for notifications (not directly relevant for deletion). |
Output
The node outputs an array of items corresponding to the processed notifications. Each item contains a json field with the response data from Bitrix24 regarding the deletion operation.
If an error occurs and the node is configured to continue on failure, 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 authentication credentials for Bitrix24 via one of the supported methods: OAuth2, webhook URL, or API key.
- Relies on Bitrix24's API endpoints to perform notification management.
- No additional external dependencies beyond standard HTTP requests to Bitrix24.
Troubleshooting
Common Issues:
- Invalid or missing Notification ID will cause the operation to fail.
- Incorrect or expired authentication credentials will result in authorization errors.
- Network connectivity issues may prevent communication with Bitrix24 API.
Error Messages:
- Errors returned from Bitrix24 API will be propagated; typical messages include "Notification not found" or "Access denied".
- If the node is set to continue on failure, errors will appear in the output JSON under the
errorproperty.
Resolutions:
- Verify the Notification ID is correct and exists in Bitrix24.
- Ensure authentication credentials are valid and have necessary permissions.
- Check network connectivity and API endpoint accessibility.
Links and References
- Bitrix24 Official API Documentation
- Bitrix24 Notifications API
- n8n documentation on Creating Custom Nodes