Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node integrates with Feishu's task management API to create new tasks. It is designed for automating task creation within workflows, enabling users to programmatically add tasks with specific details such as title, description, and user assignment. This is useful in scenarios like project management automation, syncing tasks from other systems, or triggering task creation based on events.
For example, you could use this node to automatically create a task in Feishu whenever a new issue is reported in your bug tracking system, ensuring that the responsible team member is notified and assigned.
Properties
| Name | Meaning |
|---|---|
| 任务标题 | The title of the task to be created. This is a required string input representing the task name. |
| 任务摘要 | A brief description or summary of the task. Optional string providing additional context. |
| 用户 ID 类型 | The type of user identifier used to assign or relate the task. Options: Open ID, Union ID, User ID. |
| 其他参数 | Additional parameters for task creation provided as a JSON object. This allows specifying any other supported fields according to Feishu's task creation API. |
Output
The node outputs an array of JSON objects representing the created tasks. Each output item corresponds to one input item processed and contains the response data returned by Feishu's API for the created task.
If the API returns binary data (not indicated here), it would be included accordingly, but this node primarily deals with JSON responses describing the created task.
Dependencies
- Requires an API key credential for authenticating with Feishu's API.
- Needs proper configuration of the Feishu API credentials within n8n.
- Depends on Feishu's task management API being accessible and the authenticated user having permissions to create tasks.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Incorrect user ID types or values may result in errors assigning the task.
- Malformed JSON in the "其他参数" field can cause request failures.
- Network connectivity issues to Feishu API endpoints.
Error messages:
"未实现方法: 任务.创建任务"indicates the operation is not implemented or recognized; ensure correct resource and operation names.- API error messages returned from Feishu are passed through; check the error details for invalid parameters or permission issues.
Resolutions:
- Verify API credentials and permissions.
- Validate JSON syntax in additional parameters.
- Confirm user ID types and values match expected formats.
- Check network access and retry if transient errors occur.
Links and References
- Feishu Task Creation API Documentation (in Chinese) – detailed reference for the JSON structure accepted in the "其他参数" property.