Feishu Node icon

Feishu Node

Feishu Node

Overview

This node interacts with the Feishu (Lark) "多维表格" (Bitable, or Multi-dimensional Table) service to retrieve information about a specific view within a table. It is designed for scenarios where you need to programmatically access and process data from a particular view in a Feishu Bitable, such as automating reporting, synchronizing data with other systems, or extracting filtered datasets for further processing.

Practical examples:

  • Fetching a filtered list of records from a specific view for reporting.
  • Integrating Feishu Bitable data into other business workflows.
  • Automating exports of view-specific data to external databases or spreadsheets.

Properties

Name Type Meaning
多维表格 Token String The unique identifier (token) for the Feishu Bitable App. Required for authentication and API access.
多维表格 ID String The unique identifier for the specific Bitable (multi-dimensional table) you want to access.
视图 ID String The unique identifier for the view within the specified Bitable whose data you wish to retrieve.

Output

The node outputs an array of JSON objects representing the data retrieved from the specified view in the Feishu Bitable. Each object corresponds to a record/row from the view. If an error occurs and "Continue On Fail" is enabled, the output will include an object with an error field describing the issue.

Example output structure:

[
  {
    "field1": "value1",
    "field2": "value2",
    ...
  }
]

If an error occurs:

[
  {
    "error": "Error message here"
  }
]

Note: The actual fields depend on the structure of your Bitable view.

Dependencies

  • Feishu (Lark) API: Requires valid credentials (feishuCredentialsApi) configured in n8n.
  • API Keys/Tokens: You must provide the "多维表格 Token" for authentication.
  • n8n Configuration: Ensure the Feishu credentials are set up in your n8n instance.

Troubleshooting

  • Missing Method Error:

    • Message: 未实现方法: <resource>.<operation>
    • Cause: The selected resource or operation is not implemented in the node.
    • Solution: Double-check that you have selected the correct resource ("多维表格") and operation ("获取视图"). If the problem persists, the node may not support this combination.
  • Authentication Errors:

    • Message: May include errors related to invalid tokens or missing credentials.
    • Solution: Verify that your "多维表格 Token" and Feishu credentials are correct and have sufficient permissions.
  • API Errors:

    • If the Feishu API returns an error, it will be included in the output under the error field when "Continue On Fail" is enabled.
    • Solution: Review the error message for details, check your input parameters, and ensure the IDs are correct.

Links and References

Discussion