Feishu Node icon

Feishu Node

Feishu Node

Actions106

Overview

This node provides integration with a multi-dimensional table service (referred to as "多维表格"). Specifically, the "删除记录" (Delete Record) operation allows users to delete a specific record from a designated multi-dimensional table. This is useful in scenarios where you need to programmatically remove outdated or incorrect data entries from your tables.

Practical examples include:

  • Automatically deleting user records that have been marked for removal.
  • Cleaning up temporary or test data after processing.
  • Removing entries based on certain workflow conditions or triggers.

Properties

Name Meaning
多维表格 Token The unique identifier token for the multi-dimensional table App. Used for authentication.
多维表格 ID The unique identifier of the multi-dimensional data table from which the record will be deleted.
记录 ID The unique identifier of the record within the table to be deleted. This ID is typically obtained via a query operation.

Output

The node outputs JSON data representing the result of the delete operation for each input item processed. Typically, this output confirms whether the deletion was successful or contains error information if the operation failed.

No binary data output is involved in this operation.

Dependencies

  • Requires an API token ("多维表格 Token") to authenticate requests against the multi-dimensional table service.
  • The node depends on the n8n environment having this token configured and passed correctly.
  • No additional external dependencies are indicated beyond standard HTTP/API calls to the multi-dimensional table service.

Troubleshooting

  • Common issues:

    • Invalid or expired token: The node will fail to authenticate, resulting in errors.
    • Incorrect table ID or record ID: If these identifiers do not exist or are mistyped, the deletion will fail.
    • Network or API service downtime can cause request failures.
  • Error messages and resolutions:

    • Authentication errors: Verify that the provided token is correct and has sufficient permissions.
    • Record not found errors: Confirm that the record ID exists in the specified table.
    • General API errors: Check network connectivity and the status of the multi-dimensional table service.

Links and References

  • Refer to the official documentation of the multi-dimensional table service for details on obtaining tokens, table IDs, and record IDs.
  • Consult n8n documentation on how to configure credentials and handle API integrations.

Discussion