airtable.updateRecordComment replaces a comment’s text.
automations/update-airtable-comment.automation.ts
data.recordComments:write.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Edit a caller-owned Airtable record comment.
airtable.updateRecordComment replaces a comment’s text.
import { automation } from "automate.ax"
import { airtable } from "automate.ax/airtable"
export default automation("Update Airtable comment", () => {
airtable.updateRecordComment({
baseId: "app123",
table: "Contacts",
recordId: "rec123",
commentId: "com123",
text: "Approved",
})
})
data.recordComments:write.