Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node provides integration with a calendar service, specifically allowing users to delete events from a specified calendar. It is useful in scenarios where automated workflows need to manage calendar schedules by removing outdated or canceled events programmatically. For example, if an event is canceled in a CRM system, this node can be used to automatically delete the corresponding calendar event to keep schedules synchronized.
Properties
| Name | Meaning |
|---|---|
| 日历 ID | The ID of the calendar containing the event to delete. This ID can be obtained via calendar queries or searches. |
| 日程 ID | The ID of the specific event to delete. This ID is available from event creation or event list retrieval operations. |
| 是否发送通知 | Boolean flag indicating whether to send a notification to event participants about the deletion. Defaults to true. |
Output
The node outputs JSON data representing the result of the delete operation for each input item. Typically, this will include confirmation of successful deletion or error details if the operation failed. There is no binary output associated with this node.
Dependencies
- Requires an API key credential for authenticating with the calendar service.
- The node depends on the calendar service's API endpoints to perform event deletion.
- Proper permissions are needed on the API key to delete calendar events.
- No additional environment variables are explicitly required beyond the API authentication setup.
Troubleshooting
Common Issues:
- Invalid or missing calendar ID or event ID will cause the deletion to fail.
- Insufficient permissions on the API key may result in authorization errors.
- Network issues or API downtime can cause request failures.
Error Messages:
- Errors related to "未实现方法" (unimplemented method) indicate that the requested resource-operation combination is not supported.
- API errors returned from the calendar service will be surfaced, often including error messages explaining the failure reason.
Resolutions:
- Verify that the calendar ID and event ID are correct and exist.
- Ensure the API key has the necessary scopes/permissions to delete events.
- Check network connectivity and retry if transient errors occur.
- Enable "Continue On Fail" option in the node settings to handle partial failures gracefully.
Links and References
- Refer to your calendar service API documentation for details on obtaining calendar and event IDs.
- Review API authentication setup guides to configure the required API key credentials.
- Consult n8n documentation on error handling and node configuration for best practices.