Actions61
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
- 日历 Actions
- 多维表格 Actions
Overview
This node is designed to interact with Feishu's "多维表格" (Bitable) service, specifically to delete a data table within a Bitable application. It is useful in automation scenarios where you need to programmatically remove entire tables from a Feishu Bitable workspace, such as cleaning up after data processing, resetting environments, or managing resources dynamically.
Example use cases:
- Automatically deleting temporary tables after a workflow completes.
- Removing outdated or obsolete tables as part of a scheduled maintenance process.
- Integrating with other systems to manage Feishu Bitable resources based on external triggers.
Properties
| Name | Type | Meaning |
|---|---|---|
| 多维表格 Token | String | The unique identifier (token) for the Bitable App. Required for authentication and identifying the app context. |
| 多维表格 ID | String | The unique identifier for the specific Bitable data table to be deleted. |
Output
The output will be an array of JSON objects, one per input item processed. On success, the output structure is typically empty or contains confirmation of deletion. On failure, the output includes an error field with the error message. If the node is set to "Continue On Fail", failed items will still be included in the output with their respective error messages.
Example output on error:
[
{
"error": "Table not found"
}
]
Dependencies
- Feishu API: Requires access to Feishu's Bitable API endpoints.
- API Credentials: The node requires valid Feishu credentials (
feishuCredentialsApi) configured in n8n. - Environment Variables: None specified directly, but Feishu credentials may rely on environment variables depending on your n8n setup.
Troubleshooting
Common Issues:
- Invalid Token or Table ID: Ensure that both the "多维表格 Token" and "多维表格 ID" are correct and correspond to existing resources in Feishu.
- Insufficient Permissions: The provided token must have permission to delete tables in the specified Bitable app.
- Network/API Errors: Connectivity issues or Feishu API downtime can cause failures.
Error Messages:
"未实现方法: bitable.bitable:table:delete": Indicates that the requested operation is not implemented—check if the resource and operation names are correct."Table not found"or similar: The specified table does not exist or has already been deleted.- NodeApiError: This error wraps API errors; check the
errorfield in the output for more details.
How to resolve:
- Double-check all property values.
- Verify API credentials and permissions.
- Consult Feishu API documentation for required scopes and endpoint availability.