Skip to documentation
Google Sheets integration

Batch Get Values

Perform Batch Get Values through Google Sheets.

View as Markdown
google_sheets_batch_get_values
write

Inputs

  • spreadsheet_id
    expressionrequired
    Spreadsheet Id

    Required literal value or workflow expression.

  • ranges
    jsonrequired
    Ranges

    Required JSON value.

  • major_dimension
    select
    Major Dimension

    Optional selected identifier or value.

    Default: "ROWS"

    Options: Rows ("ROWS"), Columns ("COLUMNS")

Outputs

  • successSuccess
  • spreadsheet_idSpreadsheet Id
  • value_rangesValue Ranges
  • range_countRange Count
  • errorError
  • error_messageError Message

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "spreadsheet_id",
    "ranges"
  ],
  "properties": {
    "ranges": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "spreadsheet_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "major_dimension": {
      "enum": [
        "ROWS",
        "COLUMNS"
      ],
      "type": "string",
      "default": "ROWS",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "range_count": {},
    "value_ranges": {},
    "error_message": {},
    "spreadsheet_id": {}
  },
  "additionalProperties": true
}
View all Google Sheets actions