Add sheet
Adds a new sheet to the spreadsheet
- Parameters
- Advanced call ?
Function AddSheet(Val Token, Val Spreadsheet, Val Name) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Token |
| Spreadsheet | --spreadsheet | String | ✔ | Spreadsheet identifier |
| Name | --title | String | ✔ | NewSheetName |
Returns
Map Of KeyAndValue - serialized JSON response from Google
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
1C:Enterprise/OneScript code example
Token = "ya29.a0AT3oNZ89Gfvy6_DUg_tviJJnmBXSmGRrPL6Vym5gPCsPQEa3F606plSWJttyabLz5gHJY63An6XG9wKNlbVK4fkTSF_KNhqT5M6IGUm8THO6IWF0iGzg5z2SO...";
Spreadsheet = "1hAKnTEvhiX-_-fYfXXYthJ3xq6Ub4SrlLPaIg0Tb9fs";
Name = "TestSheet";
Result = OPI_GoogleSheets.AddSheet(Token, Spreadsheet, Name);
- Bash
- CMD/Bat
oint gsheets AddSheet \
--token "***" \
--spreadsheet "12G1pcV9BX8yzjeR7IwclLOaM9k5f5_XBcLG6jPTTUVM" \
--title "TestSheet"
oint gsheets AddSheet ^
--token "***" ^
--spreadsheet "12G1pcV9BX8yzjeR7IwclLOaM9k5f5_XBcLG6jPTTUVM" ^
--title "TestSheet"
Result
{
"spreadsheetId": "14kavFe2TD-xa3G5UeoyTQZgNDaL2RXs5pkBLye1fCxw",
"replies": [
{
"addSheet": {
"properties": {
"sheetId": 2093087137,
"title": "TestSheet",
"index": 2,
"sheetType": "GRID",
"gridProperties": {
"rowCount": 1000,
"columnCount": 26
}
}
}
}
]
}