1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Google_Sheets/Working-with-sheets/Add-sheet.md

66 lines
1.2 KiB
Markdown
Raw Normal View History

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