Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node is designed to update a view within a multi-dimensional table (多维表格) in the Feishu platform. It allows users to modify properties of a specific view identified by its unique ID inside a given table and app. This operation is useful when you want to programmatically rename or change attributes of views in your data tables, for example, updating a dashboard view's name or configuration without manual intervention.
Practical scenarios include:
- Automating updates to views after data schema changes.
- Renaming views based on external triggers or workflows.
- Adjusting view properties dynamically as part of a larger data processing pipeline.
Properties
| Name | Meaning |
|---|---|
| 多维表格 Token | The unique identifier token for the multi-dimensional table App. Required for authentication. |
| 多维表格 ID | The unique identifier of the multi-dimensional table where the view exists. |
| 视图 ID | The unique identifier of the view within the multi-dimensional table that needs to be updated. |
| 视图名称 | The new name for the view. Must be non-empty, under 100 characters, and cannot contain [ or ]. |
| 视图属性 | JSON object representing additional properties of the view to update. |
Output
The node outputs an array of JSON objects corresponding to each input item processed. Each output JSON contains the result of the update operation for the respective view. The exact structure depends on the API response from the Feishu multi-dimensional table service but generally includes confirmation of the updated view details.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Feishu multi-dimensional table service.
- The node depends on the Feishu API endpoint for multi-dimensional table view updates.
- Proper configuration of the API token and permissions to access and modify the specified table and view are necessary.
Troubleshooting
Common issues:
- Invalid or expired token leading to authentication failures.
- Incorrect table ID or view ID causing "not found" errors.
- View name containing forbidden characters or exceeding length limits.
- Network or API rate limiting errors.
Error messages and resolutions:
"未实现方法"("Method not implemented"): Indicates the requested resource-operation combination is not supported; verify correct resource and operation selection.- Authentication errors: Check that the provided token is valid and has sufficient permissions.
- Validation errors on view name: Ensure the name does not contain
[or]and is less than 100 characters. - If continuing on fail is enabled, errors will be returned in the output JSON under an
errorfield for individual items.
Links and References
- Feishu Developer Documentation (for multi-dimensional table APIs): https://open.feishu.cn/document/ukTMukTMukTM/ucDO1EjL3gTNx4yN
- n8n Node Development Guide: https://docs.n8n.io/integrations/creating-nodes/