create_spreadsheet_comment
Add comments to Google Spreadsheets by specifying user email, spreadsheet ID, and comment content. Simplify collaboration and feedback tracking within Google Workspace.
Instructions
Create a new comment on a Google Spreadsheet.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_content | Yes | ||
spreadsheet_id | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"comment_content": {
"title": "Comment Content",
"type": "string"
},
"spreadsheet_id": {
"title": "Spreadsheet Id",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email",
"spreadsheet_id",
"comment_content"
],
"type": "object"
}