我正在查看以下有关Google表格的文档,并且想知道如何添加/更新带有注释的单元格。
https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update
PUT https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/{range}
我似乎找不到添加注释的示例请求正文。我尝试发送一个PUT请求,但是当然它返回了400。
{
"values": [
[
{
"note": "sample note"
}
]
]
}
这将返回以下错误:
{
"error": {
"code": 400,
"message": "Invalid values[17][0]: struct_value {\n fields {\n key: \"note\"\n value {\n string_value: \"sample note\"\n }\n }\n}\n",
"status": "INVALID_ARGUMENT"
}
}