Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node integrates with the Feishu platform to perform various operations on different resources. Specifically, for the "任务" (Task) resource and the "获取任务详情" (Get Task Details) operation, it retrieves detailed information about a specific task identified by its unique ID. This is useful in workflows where you need to fetch up-to-date task details from Feishu, such as tracking task status, reviewing task content, or integrating task data into other systems.
Practical examples include:
- Automatically fetching task details when a new task is assigned to a user.
- Synchronizing task information between Feishu and an external project management tool.
- Triggering notifications or follow-up actions based on task properties.
Properties
| Name | Meaning |
|---|---|
| 任务ID | The unique identifier of the task to retrieve details for. |
| 用户 ID 类型 | The type of user ID used to identify the user context. Options: Open ID, Union ID, User ID. |
Output
The node outputs JSON data representing the detailed information of the requested task. Each output item corresponds to one input item processed and contains the task's properties as returned by the Feishu API.
If the node supports binary data output (not evident from the provided code), it would typically represent attachments or files related to the task, but this is not explicitly shown here.
Dependencies
- Requires an API key credential for authenticating with the Feishu platform.
- The node depends on the Feishu API being accessible and the credentials having sufficient permissions to read task details.
- No additional environment variables or external services are indicated beyond the Feishu API access.
Troubleshooting
- Common issues:
- Invalid or missing task ID will cause the API call to fail.
- Incorrect user ID type may result in authorization errors or no data found.
- Network connectivity problems can prevent successful API calls.
- Error messages:
"未实现方法: 任务.获取任务详情"indicates that the requested resource-operation combination is not implemented; ensure the correct resource and operation names are selected.- API errors wrapped as
NodeApiErrorwill provide error details from Feishu; check the message for specifics like authentication failure or invalid parameters.
- Resolutions:
- Verify that the task ID is correct and exists in Feishu.
- Confirm the user ID type matches the expected format for your Feishu tenant.
- Check API credentials and permissions.
- Enable "Continue On Fail" if you want the workflow to proceed despite individual item errors.
Links and References
- Feishu Developer Documentation
- n8n documentation on creating custom nodes