Google Sheets

gs_create_spreadsheet

Create a new Google Sheets spreadsheet. Optionally specify sheet/tab names, locale, and timezone. Returns the spreadsheet ID and URL.

Remote node2flow/google-sheets

Other tools also called gs_create_spreadsheet? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "Spreadsheet title"
    },
    "locale": {
      "type": "string",
      "description": "Locale code (e.g. \"en_US\", \"th_TH\")"
    },
    "time_zone": {
      "type": "string",
      "description": "Timezone (e.g. \"America/New_York\", \"Asia/Bangkok\")"
    },
    "sheet_titles": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Names for initial sheets/tabs (default: one sheet named \"Sheet1\")"
    }
  }
}