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 to update calendar events. It allows users to modify existing events in a specified calendar owned by a user, group, or company. This is useful for automating calendar management tasks such as rescheduling meetings, updating event details, or correcting event information without manual intervention.
Practical examples include:
- Automatically updating meeting times based on CRM workflow triggers.
- Changing event descriptions or attendees when related data changes in Bitrix24.
- Synchronizing external calendar updates into Bitrix24 calendars programmatically.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook URL (simpler), or API Key |
| Type | Type of calendar to update: User, Group, or Company calendar |
| Owner ID | Identifier of the calendar owner whose event is being updated |
| Event ID | Identifier of the specific calendar event to update |
| Event Data | JSON object containing the new data for the event |
| Options | Additional optional parameters: - Access Token: override default token - Filter: JSON filter criteria - Order: JSON sort order |
Output
The node outputs an array of items where each item contains a json field representing the response from Bitrix24 after attempting to update the event. The exact structure depends on Bitrix24's API response but typically includes confirmation of the update and possibly the updated event details.
If an error occurs and "Continue On Fail" is enabled, the output will contain an error message with the resource name and timestamp.
No binary data output is indicated.
Dependencies
- Requires connection to Bitrix24 via one of the supported authentication methods: OAuth2, webhook URL, or API key.
- Needs proper credentials configured in n8n for the chosen authentication method.
- Relies on Bitrix24 API endpoints for calendar event management.
- No additional external libraries beyond those bundled are required.
Troubleshooting
Common issues:
- Invalid or expired authentication tokens causing authorization failures.
- Incorrect
Owner IDorEvent IDleading to "event not found" errors. - Malformed JSON in
Event Datacausing request rejection. - Insufficient permissions for the authenticated user to update the specified calendar.
Error messages:
- Errors returned from Bitrix24 API will be surfaced in the node output if "Continue On Fail" is enabled.
- Typical errors include authentication failures, invalid IDs, or validation errors on event data.
Resolutions:
- Verify and refresh authentication credentials.
- Double-check that
Owner IDandEvent IDcorrespond to existing entities. - Validate JSON syntax and required fields in
Event Data. - Ensure the authenticated user has appropriate access rights in Bitrix24.