Reputation: 5602
I'm working with Integromat (now Make) and am wanting to rename an individual sheet in a Google Spreadsheet. How can I do this?
Integromat has a number of similar/related options for Google Sheets:
But neither allows me to update the name of an existing sheet.
Upvotes: 2
Views: 1034
Reputation: 5602
Integromat/Make also has an option Make an API Call for Google Sheets.
The Google Sheets API has an HTTP request method for updating properties of spreadsheets, including UpdateSheetPropertiesRequest which is used to update the properties of an individual sheet, specified by the sheet ID. Using this and the SheetProperties object we can update the name of an individual sheet via Integromat as follows:
In Integromat:
{
"requests": [{
"updateSheetProperties": {
"properties": {
"sheetId": "id-of-the-individual-sheet-to-be-updated",
"title": "your new sheet name"
},
"fields": "title"
}
}]
}
Upvotes: 3