> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Delete record comment

> Delete a caller-owned Airtable record comment.

`airtable.deleteRecordComment` permanently deletes one record comment.

```ts automations/delete-airtable-comment.automation.ts theme={null}
import { automation } from "automate.ax"
import { airtable } from "automate.ax/airtable"

export default automation("Delete Airtable comment", () => {
  airtable.deleteRecordComment({
    baseId: "app123",
    table: "Contacts",
    recordId: "rec123",
    commentId: "com123",
  })
})
```

`baseId`, `table`, `recordId`, and `commentId` are required. Returns `{ id, deleted: true }`. Non-admin API users can delete only comments they created. Requires `data.recordComments:write`.
