Feishu Node icon

Feishu Node

Feishu Node

Actions106

Overview

This node, named "Feishu Node," provides integration with Feishu services. Specifically for the resource "多维表格" (Multidimensional Table) and operation "列出数据表" (List Data Tables), it allows users to retrieve a paginated list of data tables from a Feishu multidimensional table app. This is useful when you want to programmatically access and process multiple tables within a Feishu app, such as syncing data, generating reports, or automating workflows based on table contents.

Practical examples include:

  • Fetching all tables in a Feishu app to display summaries or metadata.
  • Automating data extraction from multiple tables for further processing.
  • Integrating Feishu table data into other systems by listing available tables first.

Properties

Name Meaning
多维表格 Token The unique identifier token of the Feishu multidimensional table app. Required to specify which app's tables to list.
分页标记 Pagination token used to fetch subsequent pages of results. Leave empty on the first request; use the returned token for next requests if present.
分页大小 Number specifying how many tables to return per page. Default is 20.

Output

The node outputs an array of JSON objects representing the listed data tables from the specified Feishu multidimensional table app. Each item corresponds to one table's metadata or details as returned by the Feishu API.

If pagination is involved, the output may include a token to be used for fetching the next page of results.

No binary data output is indicated.

Dependencies

  • Requires an API key credential for authenticating with Feishu services.
  • The node depends on Feishu's multidimensional table API endpoints.
  • Proper configuration of the API authentication token in n8n credentials is necessary.

Troubleshooting

  • Common issues:

    • Invalid or missing "多维表格 Token" will cause authentication or resource not found errors.
    • Incorrect pagination token ("分页标记") may result in empty responses or errors.
    • Exceeding rate limits or network issues can cause request failures.
  • Error messages:

    • Errors related to missing or invalid tokens typically indicate misconfiguration of input properties.
    • API errors might be wrapped and surfaced as node execution errors; checking logs for detailed messages helps diagnose issues.
  • Resolutions:

    • Verify that the "多维表格 Token" is correct and has proper permissions.
    • Use the pagination token exactly as returned by previous calls.
    • Ensure network connectivity and valid API credentials.

Links and References

Discussion