Actions61
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
- 日历 Actions
- 多维表格 Actions
Overview
This n8n custom node interacts with the Feishu (Lark) calendar API to retrieve the list of attendees for a specific calendar event. It is designed for scenarios where you need to programmatically access, process, or synchronize attendee information from Feishu calendars—such as automating meeting management, attendance tracking, or integrating calendar data into other workflows.
Practical examples:
- Fetching all participants of a scheduled meeting for sending reminders.
- Syncing attendee lists with external CRM or HR systems.
- Auditing or reporting on meeting participation across an organization.
Properties
| Name | Type | Meaning |
|---|---|---|
| 日历 ID | string | The ID of the calendar containing the event. Obtainable via main calendar info, calendar list, or search APIs. |
| 日程 ID | string | The ID of the event whose attendees are being queried. Obtainable via event creation, listing, or search APIs. |
| 需要会议室表单信息 | boolean | Whether to include meeting room form information in the response. |
| 分页标记 | string | Pagination token. Leave empty for the first request; use the returned value for subsequent pages if more results are available. |
| 每页数量 | number | Maximum number of attendees to return per request (min: 10, max: 100). |
| 用户 ID 类型 | options | Type of user ID to use in the response. Options: Open ID, Union ID, User ID. |
Output
The node outputs a JSON array where each item represents an attendee of the specified calendar event. The structure typically includes fields such as:
{
"attendee_id": "...",
"display_name": "...",
"email": "...",
"status": "...",
// ...other attendee-related fields
}
If the option to include meeting room form information is enabled, additional fields related to meeting rooms may be present.
Note: If an error occurs and "Continue On Fail" is enabled, the output will contain an error field describing the issue for that particular item.
Dependencies
- Feishu API: Requires valid Feishu credentials (
feishuCredentialsApi) configured in n8n. - n8n Configuration: Ensure the Feishu credential is set up with appropriate permissions to access calendar and event data.
Troubleshooting
Common Issues:
- Invalid Calendar or Event ID: Supplying incorrect IDs will result in errors indicating the resource was not found.
- Insufficient Permissions: Missing or misconfigured Feishu credentials can cause authentication failures.
- Pagination Handling: Not using the returned
page_tokenfor large attendee lists may result in incomplete data retrieval.
Error Messages:
未实现方法: calendar.calendar:listEventAttendees: Indicates the requested operation is not implemented in the node.NodeApiError: Usually signals an API-level error (e.g., invalid parameters, permission denied). The error message will provide further details.- Generic error messages will be included in the output if "Continue On Fail" is enabled, allowing workflow execution to proceed.