sheets_copy_to
Copy a specific sheet from one Google Sheets spreadsheet to another by specifying source and destination spreadsheet IDs and the sheet ID to transfer.
Instructions
Copy a sheet to another Google Sheets spreadsheet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destinationSpreadsheetId | Yes | The ID of the destination spreadsheet | |
sheetId | Yes | The ID of the sheet to copy (use sheets_get_metadata to find sheet IDs) | |
spreadsheetId | Yes | The ID of the source spreadsheet (found in the URL after /d/) |
Input Schema (JSON Schema)
{
"properties": {
"destinationSpreadsheetId": {
"description": "The ID of the destination spreadsheet",
"type": "string"
},
"sheetId": {
"description": "The ID of the sheet to copy (use sheets_get_metadata to find sheet IDs)",
"type": "number"
},
"spreadsheetId": {
"description": "The ID of the source spreadsheet (found in the URL after /d/)",
"type": "string"
}
},
"required": [
"spreadsheetId",
"sheetId",
"destinationSpreadsheetId"
],
"type": "object"
}