Is it possible to add a comment to a cell in a Google Sheet using Google Sheet API ? I have searched https://developers.google.com/sheets/api/, but found no command that does this.
相关问题
- Google Sheets API Error: invalid_user: Robot is mi
- Google Sheets API v4 dot Net Deleting a row
- How to read the color of a cell in Google sheets
- How to merge cells with Google Sheets API?
- Google Sheets API: Setting permissions
相关文章
- How can my Google Apps Script be run by others the
- Get the list of all spreadsheets associated with G
- Get filtered data from Google Sheets API
- Ovewrite table Google Script interactive Google Sh
- Add Image to Google Sheets email App Script
- Getting 403 from Google Sheets API using apikey [c
- How to get an “Image in cell” URL from the Google
- Script to copy a range as picture and send it by m
Yes. You can add a comment to a cell. But "comment" is used as "note" at Sheets API. You can add "note" using spreadsheets.batchUpdate of Sheets API.
The endpoint and sample request body is as follows.
Endpoint :
Sample request body :
Note :
"startRowIndex": 0, "endRowIndex": 1, "startColumnIndex": 0, "endColumnIndex": 1
is "A1".Reference :
If this was not what you want, I'm sorry.