1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-17 12:06:34 +02:00

45 lines
1023 B
Markdown
Raw Normal View History

---
sidebar_position: 1
---
2024-06-08 13:46:25 +03:00
# Add sheet
Adds a new sheet to the spreadsheet
2024-07-10 13:58:29 +03:00
`Function AddSheet(Val Token, Val Spreadsheet, Val Name) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| 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 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-09-29 17:35:23 +03:00
Token = "ya29.a0AcM612wLdbBK14FR2SE0d3WHabYb8Xtppm0oKCcbVrecgsA-a5DfsgZ29stOw4hu84F_IpHbKTJocsm1WpjLQPBT5MJ6p8D7H1PKa_iT0...";
Spreadsheet = "1MvjT6qO5jQzS0O1o33GVv4ui59dIeDkdY8QLR6z5k9o";
2024-09-29 00:25:48 +03:00
Name = "TestSheet";
Result = OPI_GoogleSheets.AddSheet(Token, Spreadsheet, Name);
```
```sh title="CLI command example"
oint gsheets AddSheet --token %token% --spreadsheet "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc" --title "TestSheet"
```
```json title="Result"
2024-09-29 17:27:25 +03:00
```