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
The Bitrix24 node integrates with the Bitrix24 CRM and business platform, allowing users to interact with various resources such as calendars, CRM entities, and more. Specifically, for the Calendar resource and the Get Meeting Status operation, this node retrieves the status of a meeting event from a specified calendar.
This operation is useful in scenarios where you need to programmatically check the current status of a meeting (e.g., confirmed, cancelled, pending) within a Bitrix24 calendar. For example, automating workflows that depend on meeting statuses, such as sending reminders only for confirmed meetings or updating CRM records based on meeting outcomes.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authentication to use: - OAuth2 (recommended for production) - Webhook (simpler but less secure) - API Key |
| Type | Type of calendar to query: - User - Group - Company calendar |
| Owner ID | The identifier of the calendar owner whose calendar is being accessed |
| Event ID | The identifier of the specific calendar event (meeting) to get the status for |
| Options | Additional optional parameters: - Access Token: Use a specific access token instead of credentials - Filter: JSON object to filter results - Order: JSON object to specify sort order |
Output
The output contains a JSON object representing the meeting status information retrieved from the Bitrix24 calendar event. This typically includes details about the event's current state, such as whether it is confirmed, tentative, or cancelled, along with any other metadata returned by the Bitrix24 API related to the meeting status.
If the node encounters an error and "Continue On Fail" is enabled, the output will include an error object with the error message, the resource name, and a timestamp.
The node does not output binary data for this operation.
Dependencies
- Requires connection to a Bitrix24 instance.
- Requires one of the following authentication methods configured in n8n:
- OAuth2 authentication (recommended)
- Webhook URL authentication
- API key authentication
- The node uses Bitrix24 API endpoints internally to fetch calendar and event data.
- No additional external dependencies beyond Bitrix24 API access.
Troubleshooting
Common Issues:
- Invalid or expired authentication tokens can cause authorization failures.
- Incorrect
Owner IDorEvent IDvalues may result in "not found" errors. - Insufficient permissions for the authenticated user to access the specified calendar or event.
- Malformed JSON in the
FilterorOrderoptions can cause request errors.
Error Messages:
- Errors thrown by the Bitrix24 API are surfaced in the node output if "Continue On Fail" is enabled.
- Typical error messages include authentication failures, missing required parameters, or API rate limits.
Resolutions:
- Verify and refresh authentication credentials.
- Double-check the correctness of
Owner IDandEvent ID. - Ensure the authenticated user has appropriate permissions.
- Validate JSON syntax in optional filter/order fields.