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/Delete-sheet.md

52 lines
1.0 KiB
Markdown
Raw Normal View History

---
sidebar_position: 2
---
2024-06-08 12:46:25 +02:00
# Delete sheet
Deletes a sheet from the spreadsheet
<br/>
*Function DeleteSheet(Val Token, Val Spreadsheet, Val Sheet) Export*
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Token | --token | String | Token |
| Spreadsheet | --spreadsheet | String | Spreadsheet identifier |
| Sheet | --sheet | String | IdentifierOfSheetToDelete |
Returns: Map Of KeyAndValue - serialized JSON response from Google
```bsl title="Code example"
Spreadsheet = "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc";
Sheet = "1790807910";
Response = OPI_GoogleSheets.DeleteSheet(Token, Spreadsheet, Sheet); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
```
```sh title="CLI command example"
oint gsheets DeleteSheet --token %token% --spreadsheet "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc" --sheet "1790807910"
```
```json title="Result"
{
"spreadsheetId": "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc",
"replies": [
{}
]
}
```