Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node integrates with the Feishu platform, specifically targeting operations on its multi-dimensional tables (多维表格). The "新增数据表" (Add Data Table) operation allows users to create a new data table within a Feishu app by sending a JSON request body that defines the table's structure and properties. This is useful for automating the creation of structured data repositories inside Feishu apps, enabling workflows that dynamically generate tables based on external triggers or data.
Practical examples include:
- Automatically creating project tracking tables when new projects are initiated.
- Generating custom data collection forms in Feishu based on user input from other systems.
- Setting up inventory or resource management tables programmatically.
Properties
| Name | Meaning |
|---|---|
| 多维表格 Token | The unique identifier token for the Feishu multi-dimensional table app. Required for authentication and specifying which app to operate on. |
| 请求体JSON | The JSON-formatted request body defining the new data table's configuration. It must follow the schema documented at https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table/create |
Output
The node outputs an array of JSON objects representing the response from the Feishu API after attempting to create the new data table. Each output item corresponds to one input item processed. The JSON typically contains details about the newly created table, such as its ID, name, and metadata returned by the Feishu service.
No binary data output is indicated or handled by this node.
Dependencies
- Requires an API key credential for authenticating with the Feishu platform.
- The node depends on the Feishu open platform API endpoint for creating multi-dimensional tables.
- Proper network access to Feishu's API servers is necessary.
- The user must provide a valid multi-dimensional table app token and a correctly formatted JSON request body according to Feishu's API specification.
Troubleshooting
Common issues:
- Invalid or expired multi-dimensional table token will cause authentication failures.
- Malformed JSON in the request body can lead to API errors.
- Missing required fields in the JSON body may result in validation errors from the Feishu API.
- Network connectivity problems can prevent successful API calls.
Error messages:
- Errors thrown by the node include detailed messages from the Feishu API wrapped in a NodeOperationError.
- If the node is set to continue on fail, error details are included in the output JSON under an
errorfield.
Resolution tips:
- Verify the multi-dimensional table token is correct and has not expired.
- Validate the JSON request body against the Feishu API documentation before running the node.
- Ensure the node has internet access and Feishu API endpoints are reachable.
- Use the node's debug logs to inspect the exact API call and error messages.
Links and References
- Feishu Open Platform API Documentation for Multi-dimensional Tables:
https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table/create