mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-04-13 11:50:53 +02:00
1.3 KiB
1.3 KiB
sidebar_position
sidebar_position |
---|
1 |
Add sheet
Adds a new sheet to the spreadsheet
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
Token = "ya29.a0AcM612xw6IRwwkQIOEhizd2pJ6LLI4UAhdhxmXDGEzYkcfUPrLYgDDwbsSi5iQdc78WPs_1_Qor5KipuV6mAIvr6z-AKzrBaMT4erIR5T...";
Spreadsheet = "1IIUxPvgvrPCB92SXFISbKBFLAbmbHUIu_OysyC9w3Ow";
Name = "TestSheet";
Result = OPI_GoogleSheets.AddSheet(Token, Spreadsheet, Name);
oint gsheets AddSheet --token %token% --spreadsheet "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc" --title "TestSheet"
{
"spreadsheetId": "1CppTmECbHp9HaxzXF5NpNCiNvsZFruTdmBoyhPdtQe4",
"replies": [
{
"addSheet": {
"properties": {
"sheetId": 20832585,
"title": "TestSheet",
"index": 2,
"sheetType": "GRID",
"gridProperties": {
"rowCount": 1000,
"columnCount": 26
}
}
}
}
]
}