Overview
This node is designed to delete records from a multi-dimensional table (多维表格). It is useful in scenarios where you need to programmatically remove specific entries from a database or spreadsheet-like structure identified by unique record IDs. For example, it can be used to clean up outdated data, remove erroneous entries, or automate data management workflows by deleting records based on certain conditions.
Properties
| Name | Meaning |
|---|---|
| app_token | The unique identifier of the multi-dimensional table (多维表格) from which records will be deleted. |
| 记录表 (databaseId) | The target record table within the multi-dimensional table where the deletion will occur. This property depends on the app_token and must be selected accordingly. |
| 记录ID (record_id) | The ID(s) of the record(s) to delete. Multiple IDs can be provided, separated by commas. |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this includes confirmation of successful deletion or details about any errors encountered. There is no indication that binary data is output by this node.
Dependencies
- Requires an API token (
app_token) to identify and authenticate access to the multi-dimensional table. - The node relies on external methods for loading options and executing the delete operation, indicating integration with an external service or API managing the multi-dimensional tables.
- Proper configuration of the API token and permissions to delete records in the specified table are necessary.
Troubleshooting
- Invalid or missing
app_token: The node may fail to load available tables or perform deletions if the token is incorrect or not provided. Ensure the token is valid and has sufficient permissions. - Incorrect
databaseId: Selecting a non-existent or unauthorized record table will cause errors. Make sure the table exists and is accessible with the given token. - Malformed
record_id: Providing invalid or improperly formatted record IDs (e.g., wrong separators or empty strings) may lead to failure in deleting records. Use comma-separated IDs without extra spaces. - API rate limits or connectivity issues: Since the node interacts with an external service, network problems or API limits might cause errors. Check network status and API usage quotas.
Links and References
- No direct links are provided in the source code. For more information, consult the documentation of the multi-dimensional table service or API associated with the
app_token.