Delete sheet
Deletes a sheet from the spreadsheet
- Parameters
- Advanced call ?
Function DeleteSheet(Val Token, Val Spreadsheet, Val Sheet) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Token |
| Spreadsheet | --spreadsheet | String | ✔ | Spreadsheet identifier |
| Sheet | --sheet | String | ✔ | IdentifierOfSheetToDelete |
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.a0ATi6K2sWW_31WLH0d9aK0qk0HJ-UfyvZDcLeBbF5bLU7QH09Bx2pXAupIw40USQVaxXqsovItVSt9swWuPdBDSA0eFaVPE0CbaU2OLQlyrnITI1VVXgZ_Gx2R...";
Spreadsheet = "1hAKnTEvhiX-_-fYfXXYthJ3xq6Ub4SrlLPaIg0Tb9fs";
Sheet = "767360097";
Result = OPI_GoogleSheets.DeleteSheet(Token, Spreadsheet, Sheet);
- Bash
- CMD/Bat
oint gsheets DeleteSheet \
--token "***" \
--spreadsheet "1B1NDyZf204PJMj-nvemxMGGzyn-XNbgZSC1NKVO3Tgc" \
--sheet "1141741198"
oint gsheets DeleteSheet ^
--token "***" ^
--spreadsheet "1B1NDyZf204PJMj-nvemxMGGzyn-XNbgZSC1NKVO3Tgc" ^
--sheet "1141741198"
Result
{
"spreadsheetId": "1B1NDyZf204PJMj-nvemxMGGzyn-XNbgZSC1NKVO3Tgc",
"replies": [
{}
]
}