2024-06-07 13:53:24 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
2024-06-08 12:46:25 +02:00
|
|
|
# Add sheet
|
2024-06-07 23:40:04 +02:00
|
|
|
Adds a new sheet to the spreadsheet
|
2024-06-07 13:53:24 +02:00
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
2024-06-07 23:40:04 +02:00
|
|
|
*Function AddSheet(Val Token, Val Spreadsheet, Val Name) Export*
|
2024-06-07 13:53:24 +02:00
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Token | --token | String | Token |
|
2024-06-07 23:40:04 +02:00
|
|
|
| Spreadsheet | --spreadsheet | String | Spreadsheet identifier |
|
2024-06-07 13:53:24 +02:00
|
|
|
| Name | --title | String | NewSheetName |
|
|
|
|
|
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Google
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-06-07 13:53:24 +02:00
|
|
|
```bsl title="Code example"
|
|
|
|
|
2024-06-07 23:40:04 +02:00
|
|
|
Spreadsheet = "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc";
|
2024-06-07 13:53:24 +02:00
|
|
|
Name = "TestSheet";
|
|
|
|
|
2024-06-07 23:40:04 +02:00
|
|
|
Response = OPI_GoogleSheets.AddSheet(Token, Spreadsheet, Name); //Map
|
2024-06-07 13:53:24 +02:00
|
|
|
Response = OPI_Tools.JSONString(Response); //JSON string
|
|
|
|
|
|
|
|
```
|
2024-07-10 10:59:55 +02:00
|
|
|
|
|
|
|
|
2024-06-07 13:53:24 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint gsheets AddSheet --token %token% --spreadsheet "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc" --title "TestSheet"
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 10:59:55 +02:00
|
|
|
{
|
2024-06-07 13:53:24 +02:00
|
|
|
"spreadsheetId": "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc",
|
|
|
|
"replies": [
|
|
|
|
{
|
|
|
|
"addSheet": {
|
|
|
|
"properties": {
|
|
|
|
"sheetId": 321892522,
|
|
|
|
"title": "TestSheet",
|
|
|
|
"index": 2,
|
|
|
|
"sheetType": "GRID",
|
|
|
|
"gridProperties": {
|
|
|
|
"rowCount": 1000,
|
|
|
|
"columnCount": 26
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|