mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
1019 B
1019 B
sidebar_position |
---|
3 |
ChangeBookName
Changes the name of the existing book
Function EditBookTitle(Val Token, Val Book, Val Name) Export
Parameter | CLI option | Type | Destination |
---|---|---|---|
Token | --token | String | Token |
Book | --spreadsheet | String | BookID |
Name | --title | String | New name |
Returns: Map Of KeyAndValue - serialized JSON response from Google
Book = "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc";
Name = "Test table (change.)";
Response = OPI_GoogleSheets.EditBookTitle(Token, Book, Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
oint gsheets EditBookTitle --token %token% --spreadsheet "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc" --title "Test table (change.)"
{
"spreadsheetId": "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc",
"replies": [
{}
]
}