1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Google_Sheets/Book-work/Edit-book-title.md
2024-06-04 21:55:01 +03:00

963 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: Key-Value Pair - 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": [
 {}
 ]
 }