Copy sheet
Copies a sheet from one spreadsheet to another
- Parameters
- Advanced call ?
Function CopySheet(Val Token, Val From, Val Target, Val Sheet) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Token |
| From | --from | String | ✔ | Source spreadsheet ID |
| Target | --to | String | ✔ | Destination spreadsheet ID |
| Sheet | --sheet | String | ✔ | CopiedSheetID |
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...";
From = "1hAKnTEvhiX-_-fYfXXYthJ3xq6Ub4SrlLPaIg0Tb9fs";
Target = "1jzbqwoCfQ3ZCWonv_IqV8RlFrI9tP-z0uglFWdBgpvE";
Sheet = "767360097";
Result = OPI_GoogleSheets.CopySheet(Token, From, Target, Sheet);
- Bash
- CMD/Bat
oint gsheets CopySheet \
--token "***" \
--from "12G1pcV9BX8yzjeR7IwclLOaM9k5f5_XBcLG6jPTTUVM" \
--to "1s2mu9L6OC4qeG6E73WmXvzE_xe_Z19BXrvLuflXWfkk" \
--sheet "1603361351"
oint gsheets CopySheet ^
--token "***" ^
--from "12G1pcV9BX8yzjeR7IwclLOaM9k5f5_XBcLG6jPTTUVM" ^
--to "1s2mu9L6OC4qeG6E73WmXvzE_xe_Z19BXrvLuflXWfkk" ^
--sheet "1603361351"
Result
{
"sheetId": 1543194239,
"title": "Sheet1 (копия)",
"index": 2,
"sheetType": "GRID",
"gridProperties": {
"rowCount": 1000,
"columnCount": 26
}
}