Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node, named "Feishu Node," is designed to interact with Feishu's API, specifically for managing electronic spreadsheets. The operation "修改电子表格属性" (Modify Spreadsheet Properties) allows users to update properties of a spreadsheet, such as changing its title. This node is useful in scenarios where automated workflows need to programmatically update spreadsheet metadata without manual intervention. For example, after generating reports or aggregating data, you might want to rename the spreadsheet to reflect the latest content or date.
Properties
| Name | Meaning |
|---|---|
| 电子表格 Token | The token identifying the target spreadsheet. Required to specify which spreadsheet to modify. |
| 新的电子表格标题 | The new title to assign to the spreadsheet. Used to rename the spreadsheet. |
Output
The node outputs an array of JSON objects representing the result of the operation for each input item processed. Each output item corresponds to one input and contains the updated spreadsheet information or error details if the operation failed. The exact structure depends on the Feishu API response but generally includes confirmation of the updated properties.
No binary data output is indicated by the source code.
Dependencies
- Requires an API key credential for authenticating with Feishu's API.
- The node relies on Feishu's API endpoints to perform operations on spreadsheets.
- Proper configuration of the API authentication within n8n is necessary.
- The bundled code references a resource factory that dynamically builds the available resources and operations, so the node depends on this internal helper for execution.
Troubleshooting
Common issues:
- Invalid or expired spreadsheet token: Ensure the token provided is correct and has not expired.
- Insufficient permissions: The API key used must have rights to modify the spreadsheet.
- Network or API errors: Temporary connectivity issues or API rate limits may cause failures.
Error messages:
"未实现方法: 电子表格.修改电子表格属性"indicates the operation is not implemented or recognized; verify the resource and operation names.- Errors thrown from the API are caught and can be returned as part of the output if "Continue On Fail" is enabled.
- If the node fails without continuing, it throws a detailed error including the message and item index.
Links and References
- Feishu Developer Documentation — Official API docs for Feishu platform.
- n8n Documentation — General guidance on creating and using custom nodes in n8n.