mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-10 04:18:47 +02:00
58 lines
1.4 KiB
Plaintext
58 lines
1.4 KiB
Plaintext
---
|
|
sidebar_position: 2
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get comment
|
|
Gets comment by ID
|
|
|
|
|
|
|
|
`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
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
Token = "ya29.a0AcM612zdAe2M8Ywdxt7xmK1VAAj2m3yjTdP1Ap8cFmqbE8lVngjIAujPtjc_c94MCuKNLfn7MSssBd6NfMXDQDrHMUv7Fgjp7cjuXk68n...";
|
|
Identifier = "14hysfOxsStktI4JZEXRiSZ9Rl69wNJwX";
|
|
CommentID = "AAABXOyqKNE";
|
|
|
|
Result = OPI_GoogleDrive.GetComment(Token, Identifier, CommentID);
|
|
```
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"id": "AAABW5rdEaE",
|
|
"kind": "drive#comment",
|
|
"createdTime": "2024-10-09T06:13:52.313Z",
|
|
"modifiedTime": "2024-10-09T06:13:52.313Z",
|
|
"replies": [],
|
|
"author": {
|
|
"displayName": "Антон Титовец",
|
|
"kind": "drive#user",
|
|
"me": true,
|
|
"photoLink": "//lh3.googleusercontent.com/a/ACg8ocKYttNv2CZ-cTTuE90Zmht_PwnGc0YnjM1IUllXsTVORfZFVPU=s50-c-k-no"
|
|
},
|
|
"deleted": false,
|
|
"htmlContent": "Comment text",
|
|
"content": "Comment text"
|
|
}
|
|
```
|