1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-03 13:22:19 +02:00
2024-08-13 16:49:40 +03:00

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 Description
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 "comL1oGEDJvIQlMs1"

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