Web API

Press shift + S to search API reference.

Comments

Delete comment

deletehttps://api.airtable.com/v0/{baseId}/{tableIdOrName}/{recordId}/comments/{rowCommentId}

Deletes a comment from a record. Non-admin API users can only delete comments they have created. Enterprise Admins can delete any comment from a record.

Requirements

AuthenticationPersonal access token, OAuth integration
Scopedata.recordComments:write
User role

Base commenter

Billing plansAll plans

Path parameters

baseId
string
tableIdOrName
string
recordId
string
rowCommentId
string

Response format

id
string

A comment ID

deleted
boolean
Request (example)
Copy
$
curl -X DELETE "https://api.airtable.com/v0/{baseId}/{tableIdOrName}/{recordId}/comments/{rowCommentId}" \
-H "Authorization: Bearer YOUR_TOKEN"
200 – Response (example)
{
"deleted": true,
"id": "comB5z37Mg9zaEPw6"
}