Record deleter

[apis/airtable/Record deleter]


Deletes a single record from an AirTable table. For detailed parameter information, see the AirTable API documentation: https://airtable.com/api/meta


Keywords: airtable, remove, delete, record, row

Input ports

  • record ID: string

    Receives the identifier of the record to be deleted. Example:

    "rec32C7MUspwlCGaY"<br>
    ```<br>
    
  • params:

    {"apiKey": string, "baseId": string, "tableName": string}

    Receives the authentication & table parameters required to construct the request. API Key: In AirTable, go to 'Help?' and click on 'API Documentation'. Scroll to the "Authorization" section to retrieve your API key. Base ID: In AirTable, go to 'Help?' and click on 'API Documentation'. Find the ID of the base in the introduction. Table Name: Use the table name located on the tab of the spreadsheet. Example:

    {<br>
      "apiKey": "key...",<br>
      "baseId": "app...",<br>
      "tableName": "..."<br>
    }<br>
    ```<br>

Output ports

  • record ID: string

    Sends the ID of the deleted record. Example:

    "rec32C7MUspwlCGaY"<br>
    ```<br>
    
  • AT record: {"deleted": boolean, "id": string}

    Sends the ID of the record requested for deletion, as returned from AirTable. Example:

    {<br>
      "deleted": true,<br>
      "id": "rec7Ytz8K2GiRMUdQ"<br>
    }<br>
    ```<br>
    
  • response:

    {"status": number, "headers": {string: any}, "body": string}

    Sends the entire response from the AirTable API without modification.

  • error: {"error": string, optional "details": any}

    Sends the error, if one occurred.

Last updated