我正在使用Integromat,并希望在Google电子表格中重命名一个单独的表。我该怎么做?
Integromat为Google提供了许多类似/相关的选项:
但这两种方法都不允许我更新现有工作表的名称。
发布于 2021-02-13 20:21:27
Integromat还有一个选项,为Google制作API调用。
Google Sheets API有一个HTTP方法,用于更新电子表格的属性,包括UpdateSheetPropertiesRequest,该方法用于更新表ID指定的单个工作表的属性。使用该方法和SheetProperties对象,我们可以通过Integromat更新单个工作表的名称如下:
在Integromat:
{
"requests": [{
"updateSheetProperties": {
"properties": {
"sheetId": "id-of-the-individual-sheet-to-be-updated",
"title": "your new sheet name"
},
"fields": "title"
}
}]
}https://stackoverflow.com/questions/66189515
复制相似问题