Google Sheets

gs_copy_sheet

Copy a sheet/tab to another spreadsheet. The authenticated user must have edit access to the destination spreadsheet.

Remote node2flow/google-sheets

Other tools also called gs_copy_sheet? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "sheet_id": {
      "type": "number",
      "description": "The sheet ID to copy"
    },
    "spreadsheet_id": {
      "type": "string",
      "description": "Source spreadsheet ID"
    },
    "destination_spreadsheet_id": {
      "type": "string",
      "description": "Destination spreadsheet ID to copy the sheet into"
    }
  }
}