Actions61
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
- 日历 Actions
- 多维表格 Actions
Overview
This node is designed to interact with the Feishu (Lark) platform, specifically for calendar-related operations. For the resource "日历" (Calendar) and operation "创建会议群" (Create Event Meeting Chat), the node allows users to create a meeting chat group associated with a specific calendar event. This is useful in scenarios where you want to automatically generate a chat group for event participants, facilitating communication before, during, or after a scheduled meeting.
Practical Example:
Suppose your team schedules meetings using Feishu's calendar. With this node, you can automate the creation of a dedicated chat group for each new event, ensuring all attendees have a common space to discuss agenda items, share files, or coordinate logistics.
Properties
| Name | Type | Meaning |
|---|---|---|
| 日历 ID | String | The ID of the calendar where the event is located. Obtainable via APIs such as querying main calendar info, listing calendars, or searching calendars. |
| 日程 ID | String | The ID of the event. Obtainable via APIs such as creating an event, listing events, or searching events. |
Output
The node outputs a JSON object for each input item processed. The structure of the output depends on the response from the Feishu API for creating a meeting chat group. Typically, it will include details about the created chat group, such as its ID, name, and possibly participant information.
If an error occurs and "Continue On Fail" is enabled, the output will be:
{
"error": "Error message here"
}
If the error is of type NodeApiError, the output may also include additional error details from the API.
Dependencies
- Feishu Account & API Access: You must have valid Feishu credentials configured in n8n under
feishuCredentialsApi. - n8n Configuration: Ensure that the Feishu credential is set up and accessible by this node.
Troubleshooting
- Missing Method Error:
If you see an error like未实现方法: calendar.calendar:createEventMeetingChat, it means the requested operation is not implemented. Double-check the resource and operation names. - Authentication Errors:
If authentication fails, ensure your Feishu credentials are correct and have the necessary permissions. - API Errors:
If the Feishu API returns an error (e.g., invalid calendar or event ID), the error message will be included in the output if "Continue On Fail" is enabled. Otherwise, the workflow will stop, and the error will be displayed in n8n.