delete_records
Delete multiple records from an Airtable base by specifying the base ID, table ID, and record IDs. Streamlines record management using secure OAuth 2.0 authentication.
Instructions
Delete multiple records
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_id | Yes | The Airtable base ID | |
record_ids | Yes | List of record IDs to delete | |
table_id | Yes | The table ID or name |
Input Schema (JSON Schema)
{
"properties": {
"base_id": {
"description": "The Airtable base ID",
"title": "Base Id",
"type": "string"
},
"record_ids": {
"description": "List of record IDs to delete",
"items": {
"type": "string"
},
"title": "Record Ids",
"type": "array"
},
"table_id": {
"description": "The table ID or name",
"title": "Table Id",
"type": "string"
}
},
"required": [
"base_id",
"table_id",
"record_ids"
],
"type": "object"
}