Remove-Airtable Cmdlet
Deletes Airtable data.
Syntax
Remove-Airtable [parameters]
Remarks
The Remove-Airtable cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Airtable data.
$conn = Connect-Airtable -InitiateOAuth "GETANDREFRESH" Remove-Airtable -Connection $conn -Table "SampleTable_1" -Id "6"The Where parameter can also be used to specify the primary key:
Remove-Airtable -Connection $conn -Table "exTablePowershell;" -Where "Id = 6"The primary key can also be passed to the cmdlet along the pipeline:
Select-Airtable -Connection $conn -Table SampleTable_1 -Where "Column2 = 'Bob'" | Remove-Airtable