Google Super
GOOGLESUPER_LIST_COMMENTS
Tool to list all comments for a file in Google Drive. Use when you need to retrieve comments associated with a specific file.
Remote googlesuper
Other tools also called GOOGLESUPER_LIST_COMMENTS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"fields": {
"type": "string",
"title": "Fields",
"default": "*",
"examples": [
"*",
"comments(id,content,author)"
],
"nullable": true,
"description": "A comma-separated list of fields to include in the response. Use `*` to include all fields."
},
"fileId": {
"type": "string",
"title": "File Id",
"examples": [
"1234567890abcdefghijklmnopqrstuvwxyz"
],
"description": "The ID of the file."
},
"pageSize": {
"type": "integer",
"title": "Page Size",
"default": 20,
"maximum": 100,
"minimum": 1,
"nullable": true,
"description": "The maximum number of comments to return per page."
},
"pageToken": {
"type": "string",
"title": "Page Token",
"default": null,
"nullable": true,
"description": "The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response."
},
"includeDeleted": {
"type": "boolean",
"title": "Include Deleted",
"default": false,
"nullable": true,
"description": "Whether to include deleted comments. Deleted comments will not include their original content."
},
"startModifiedTime": {
"type": "string",
"title": "Start Modified Time",
"default": null,
"nullable": true,
"description": "The minimum value of 'modifiedTime' for the result comments (RFC 3339 date-time)."
}
}
}