Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node interacts with the Feishu platform, specifically providing operations related to messages. The "撤回消息" (Recall Message) operation allows users to recall or retract a previously sent message by specifying its unique message ID. This is useful in scenarios where a message was sent by mistake or needs to be withdrawn for any reason.
Practical examples include:
- Automatically recalling messages that contain sensitive information.
- Implementing workflows that retract notifications after a certain condition is met.
- Managing message lifecycle within team communication channels on Feishu.
Properties
| Name | Meaning |
|---|---|
| 待撤回的消息的ID | The unique ID of the message to be recalled. This is a required string input. |
Output
The node outputs JSON data representing the result of the recall operation. Typically, this will include confirmation of the recall action or details about the recalled message. The exact structure depends on the Feishu API response but generally confirms success or failure.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Feishu platform.
- The node depends on the Feishu API being accessible and properly configured credentials set up in n8n.
- No additional external dependencies are indicated beyond the Feishu API access.
Troubleshooting
Common issues:
- Invalid or missing message ID: Ensure the message ID provided exists and is correct.
- Authentication errors: Verify that the API key credential is valid and has necessary permissions.
- Network or API downtime: Check connectivity to Feishu services.
Error messages:
- If the operation is not implemented for the given resource-operation pair, an error like "未实现方法: message.message:recall" may appear.
- API-related errors will be surfaced as node errors; check the error message for details.
- To handle failures gracefully, enable "Continue On Fail" in the node settings.
Links and References
- Feishu Official API Documentation
- n8n documentation on Creating Custom Nodes