A
AirtableApi
Arcade Native

DeleteMultipleRecords

AirtableApi.DeleteMultipleRecords

Arcade Native Built and maintained by Arcade with full support
Supported by Arcade

Description

Delete multiple records from an Airtable table.

Use this tool to delete multiple records in an Airtable table by providing an array of record IDs. It's useful for batch operations where several entries need to be removed simultaneously.

Input Parameters

{
  "parameters": [
    {
      "name": "base_id",
      "required": true,
      "inferrable": true,
      "description": "The unique identifier of the Airtable base containing the records to be deleted.",
      "value_schema": {
        "val_type": "string"
      }
    },
    {
      "name": "table_identifier",
      "required": true,
      "inferrable": true,
      "description": "The unique identifier or name of the Airtable table from which records are to be deleted.",
      "value_schema": {
        "val_type": "string"
      }
    },
    {
      "name": "record_ids_to_delete",
      "required": false,
      "inferrable": true,
      "description": "An array of record IDs to delete from the table. Each ID should be a string.",
      "value_schema": {
        "val_type": "array",
        "inner_val_type": "string"
      }
    }
  ]
}

Output

{
  "description": "Response from the API endpoint 'delete-multiple-records'.",
  "value_schema": {
    "val_type": "json"
  },
  "available_modes": [
    "value",
    "error"
  ]
}