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 and operations. For the Message Service resource with the Get Message Status operation, it retrieves the status of a previously sent message by its ID. This is useful in scenarios where you need to track delivery or processing status of messages sent via Bitrix24's messaging services.
Practical examples include:
- Checking if an SMS or notification message was successfully delivered.
- Monitoring message states for audit or logging purposes.
- Triggering subsequent workflows based on message status updates.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method used to authenticate with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key authentication. |
| Message ID | The unique identifier of the sent message whose status you want to retrieve. |
| Additional Options | Optional parameters including: - Provider ID: Specify a particular SMS provider. - From: Sender name or number to identify the source of the message. |
Output
The node outputs JSON data representing the status information of the requested message. The exact structure depends on Bitrix24's API response but typically includes fields such as message state, timestamps, and any error or delivery details.
If the node encounters an error during execution and "Continue On Fail" is enabled, it outputs a JSON object containing:
error: The error message.resource: The resource name ("messageservice").timestamp: The time when the error occurred.
No binary data output is indicated for this operation.
Dependencies
- Requires valid authentication credentials for Bitrix24, which can be provided via OAuth2, webhook URL, or API key.
- The node relies on Bitrix24's API endpoints to fetch message status.
- Proper configuration of credentials within n8n is necessary for successful API calls.
Troubleshooting
Common Issues:
- Invalid or expired authentication credentials leading to authorization errors.
- Incorrect or non-existent Message ID causing "not found" or similar errors.
- Network connectivity issues preventing API communication.
- Using webhook authentication may be less secure and could lead to permission limitations.
Error Messages:
- Errors returned from Bitrix24 API will be surfaced in the node's output if "Continue On Fail" is enabled.
- Typical errors include authentication failures, invalid parameters, or API rate limits.
Resolutions:
- Verify and refresh authentication credentials.
- Confirm the Message ID is correct and corresponds to a sent message.
- Check network access and firewall settings.
- Prefer OAuth2 authentication for production environments for better security and reliability.