Google Sheets

gs_duplicate_sheet

Duplicate a sheet/tab within the same spreadsheet. Creates a copy with an optional new name.

Remote node2flow/google-sheets

Other tools also called gs_duplicate_sheet? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "sheet_id": {
      "type": "number",
      "description": "The sheet ID to duplicate"
    },
    "new_sheet_name": {
      "type": "string",
      "description": "Name for the duplicated sheet (default: \"Copy of {original}\")"
    },
    "spreadsheet_id": {
      "type": "string",
      "description": "The spreadsheet ID"
    },
    "insert_sheet_index": {
      "type": "number",
      "description": "Zero-based index where the new sheet should be inserted"
    }
  }
}