Get comment
Gets comment by ID
- Parameters
- Advanced call ?
Function GetComment(Val Token, Val ObjectID, Val CommentID) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Token |
| ObjectID | --object | String | ✔ | Identifier of the file or directory where the comment is located |
| CommentID | --comment | String | ✔ | Comment identifier |
Returns
Map Of KeyAndValue - serialized JSON response from Google
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
1C:Enterprise/OneScript code example
Token = "ya29.a0ATi6K2sWW_31WLH0d9aK0qk0HJ-UfyvZDcLeBbF5bLU7QH09Bx2pXAupIw40USQVaxXqsovItVSt9swWuPdBDSA0eFaVPE0CbaU2OLQlyrnITI1VVXgZ_Gx2R...";
Identifier = "1oUMoSImbl8NKBVWQE9zkBdJ0QIPrkhtb";
CommentID = "AAABt0jaQYI";
Result = OPI_GoogleDrive.GetComment(Token, Identifier, CommentID);
- Bash
- CMD/Bat
oint gdrive GetComment \
--token "***" \
--object "1GqDkU__lzFdSj2KRtdxeUTO0xgN_cThi" \
--comment "AAAB8c9t8-o"
oint gdrive GetComment ^
--token "***" ^
--object "1GqDkU__lzFdSj2KRtdxeUTO0xgN_cThi" ^
--comment "AAAB8c9t8-o"
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": "AAAB8c9t8-o",
"createdTime": "2026-05-26T14:04:25.071Z",
"modifiedTime": "2026-05-26T14:04:25.071Z",
"htmlContent": "Comment text",
"content": "Comment text",
"deleted": false
}