1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Airtable/Comment-management/Delete-comment.md

1.2 KiB

sidebar_position
4

Delete comment

Deletes a comment for a table record

Function DeleteComment(Val Token, Val Base, Val Table, Val Record, Val Comment) Export

Parameter CLI option Type Destination
Token --token String Token
Base --base String Database identifier
Table --table String Table identifier
Record --record String Record identifier in the table
Comment --comment String Comment identifier

Returns: Map Of KeyAndValue - serialized JSON response from Airtable

	
 
 Base = "apptm8Xqo7TwMaipQ";
 Table = "tbl9G4jVoTJpxYwSY";
 Record = "recV6DxeLQMBNJrUk";
 Comment = "comL1oGEDJvIQlMs1";
 
 Response = OPI_Airtable.DeleteComment(Token, Base, Table, Record, Comment); //Map
 Response = OPI_Tools.JSONString(Response); //JSON string
 
	
 
 oint airtable DeleteComment --token %token% --base "apptm8Xqo7TwMaipQ" --table "tbl9G4jVoTJpxYwSY" --record "recV6DxeLQMBNJrUk" --comment %comment%



{
 "id": "comL1oGEDJvIQlMs1",
 "deleted": true
 }