Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node interacts with the "多维表格" (Multidimensional Table) service, specifically to list views of a table within that service. It is useful when you want to retrieve and paginate through different views configured in a multidimensional table app. Typical use cases include automating data retrieval from various table views for reporting, synchronization, or further processing workflows.
For example, you might use this node to:
- Fetch all available views of a specific multidimensional table to display or process them.
- Paginate through large sets of views using the pagination token to handle large datasets efficiently.
Properties
| Name | Meaning |
|---|---|
| 多维表格 Token | The unique identifier (token) of the multidimensional table app. This authenticates and scopes the request to a specific app instance. |
| 多维表格 ID | The unique identifier of the multidimensional table whose views you want to list. |
| 分页大小 | The number of view items to return per page. Controls the size of each paginated response. |
| 分页标记 | Pagination token used to fetch the next set of results. Leave empty on the first request; subsequent requests should use the token returned from the previous response to continue listing views. |
| 用户 ID 类型 | The type of user ID used in the request. Options are: Open_id, Union_id, User_id. This likely affects how user identity is resolved or authorized in the API call. |
Output
The node outputs JSON data representing the list of views retrieved from the multidimensional table. Each item in the output array corresponds to a view object as returned by the external service's API.
If pagination is involved, the output will also include a new pagination token (page_token) when more views are available beyond the current page, which can be used in subsequent executions to fetch additional pages.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authentication with the multidimensional table service (referred to here generically as "多维表格 Token").
- The node depends on the external multidimensional table API to list views.
- Proper configuration of the API token and table identifiers is necessary.
- Pagination support requires handling the
分页标记property correctly.
Troubleshooting
Common issues:
- Invalid or missing API token (
多维表格 Token) will cause authentication failures. - Incorrect table ID (
多维表格 ID) may result in errors indicating the table does not exist or cannot be accessed. - Improper use of pagination token (
分页标记) can lead to repeated data or failure to paginate. - Using an unsupported or incorrect user ID type may cause authorization or data retrieval errors.
- Invalid or missing API token (
Error messages:
- Errors thrown during execution are wrapped and reported with context about the resource and operation.
- If the node is set to continue on fail, errors are returned as part of the output JSON with an
errorfield describing the issue. - Common error resolution involves verifying credentials, IDs, and pagination tokens.
Links and References
- No direct links provided in the source code.
- For detailed API usage, refer to the official documentation of the multidimensional table service (多维表格).
- General n8n documentation on creating and using custom nodes: https://docs.n8n.io/
Note: The analysis is based solely on static code inspection and provided property definitions without runtime behavior inference.