1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-10 04:18:47 +02:00
OpenIntegrations/docs/en/md/Google_Drive/Comment-management/Get-comment-list.md
2024-08-14 09:06:31 +03:00

1.3 KiB

sidebar_position
3

Get list of comments

Gets the list of all comments of the object

Function GetCommentList(Val Token, Val ObjectID) Export

Parameter CLI option Type Description
Token --token String Token
ObjectID --object String Object identifier

Returns: Map Of KeyAndValue - serialized JSON response from Google


  
  AndДFile = "1rCyOc4A8VYw7DM3HV55P9BuKWayJOSvW";
  
  Response = OPI_GoogleDrive.GetCommentList(Token, AndДFile); //Map
  Response = OPI_Tools.JSONString(Response); //String
    
  oint gdrive GetCommentList --token %token% --object %object%

{
  "comments": [
  {
  "content": "NewComment",
  "htmlContent": "NewComment",
  "author": {
  "photoLink": "//lh3.googleusercontent.com/a/ACg8ocLx8JGurt0UjXFwwTiB6ZoDPWslW1EnfCTahrwrIllM6Q=s50-c-k-no",
  "me": true,
  "kind": "drive#user",
  "displayName": "Anton Titovets"
  },
  "replies": [],
  "modifiedTime": "2024-03-17T12:53:45.469Z",
  "createdTime": "2024-03-17T12:53:45.469Z",
  "kind": "drive#comment",
  "deleted": false,
  "id": "AAABI3NNNAY"
  }
  ],
  "kind": "drive#commentList"
  }