Skip to main content

Get list of comments

Gets the list of all comments of the object

Function GetCommentList(Val Token, Val ObjectID) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringToken
ObjectID--objectStringObject identifier
Returns

Map Of KeyAndValue - serialized JSON response from Google

1C:Enterprise/OneScript code example
Token = "ya29.a0ATi6K2sWW_31WLH0d9aK0qk0HJ-UfyvZDcLeBbF5bLU7QH09Bx2pXAupIw40USQVaxXqsovItVSt9swWuPdBDSA0eFaVPE0CbaU2OLQlyrnITI1VVXgZ_Gx2R...";
Identifier = "1oUMoSImbl8NKBVWQE9zkBdJ0QIPrkhtb";

Result = OPI_GoogleDrive.GetCommentList(Token, Identifier);
oint gdrive GetCommentList \
--token "***" \
--object "1GqDkU__lzFdSj2KRtdxeUTO0xgN_cThi"
Result
{
"comments": [
{
"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": "AAAB8c9t8-o",
"createdTime": "2026-05-26T14:04:25.071Z",
"modifiedTime": "2026-05-26T14:04:25.071Z",
"htmlContent": "Comment text",
"content": "Comment text",
"deleted": false
}
],
"kind": "drive#commentList"
}