Skip to main content

Create comment

Creates a comment for a file or directory

Function CreateComment(Val Token, Val Identifier, Val Comment) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringToken
Identifier--objectStringIdentifier of the object that needs a comment
Comment--textStringComment text

Returns: Map Of KeyAndValue - serialized JSON response from Google


1C:Enterprise/OneScript code example
    Token      = "ya29.a0AQQ_BDQ_0g6De1s1jLOYbrGQ43QDri_VRPre92E-_aUXJNk52_zY1j3A74665Q7FVMzsgnjqjKN14ljBwB0PlswTyjZlgxcBIDMnuqIbFLhH8Hcxc5NfKIOpS...";
Identifier = "1gWSd3xX7y9I7s3wCP7avbkrUEK5VueKR";
Comment = "Comment text";

Result = OPI_GoogleDrive.CreateComment(Token, Identifier, Comment);
    oint gdrive CreateComment \
--token "***" \
--object "1Ddwg-hig7v56qRJTDAOO2uTdnDkL4yAB" \
--text "Comment text"
Result
{
"replies": [],
"author": {
"displayName": "Антон Титовец",
"kind": "drive#user",
"me": true,
"photoLink": "//lh3.googleusercontent.com/a/ACg8ocJnbqA6yq1Q0s-yU0hen8H6NFa_chOdcC2wpT9q-BJj0q7MyPU=s50-c-k-no"
},
"kind": "drive#comment",
"id": "AAABseO4mgE",
"createdTime": "2025-10-15T09:37:49.309Z",
"modifiedTime": "2025-10-15T09:37:49.309Z",
"htmlContent": "Comment text",
"content": "Comment text",
"deleted": false
}