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

51 lines
1014 B
Markdown
Raw Normal View History

---
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
```bsl title="Code example"
Book = "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc";
Name = "Test table (change.)";
Response = OPI_GoogleSheets.EditBookTitle(Token, Book, Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
```
```sh title="CLI command example"
oint gsheets EditBookTitle --token %token% --spreadsheet "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc" --title "Test table (change.)"
```
```json title="Result"
{
"spreadsheetId": "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc",
"replies": [
{}
]
}
```