Get Rows
Perform Get Rows through Google Sheets.
google_sheets_get_rowswritegoogle_sheets
Inputs
- Google Sheets Account Id
google_sheets_account_idselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Spreadsheet Id
spreadsheet_idexpressionrequiredRequired literal value or workflow expression.
- Sheet Title
sheet_titleselectrequireddynamic optionsRequired selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Header Row
header_rownumberOptional numeric value.
Default:
1 - Max Rows
max_rowsnumberOptional numeric value.
Default:
1000 - Filter Column
filter_columnexpressionOptional literal value or workflow expression.
- Filter Value
filter_valueexpressionOptional literal value or workflow expression.
- Skip Empty Rows
skip_empty_rowsbooleanOptional true-or-false value.
Default:
true
Outputs
successSuccessspreadsheet_idSpreadsheet Idsheet_titleSheet TitleheadersHeadersrowsRowsrow_countRow CounttruncatedTruncatederrorErrorerror_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",
"sheet_title"
],
"properties": {
"max_rows": {
"type": "number",
"default": 1000,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"header_row": {
"type": "number",
"default": 1,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"sheet_title": {
"type": "string",
"description": "Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
},
"filter_value": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"filter_column": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"spreadsheet_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"skip_empty_rows": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"google_sheets_account_id": {
"type": "string",
"description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"rows": {},
"error": {},
"headers": {},
"success": {},
"row_count": {},
"truncated": {},
"sheet_title": {},
"error_message": {},
"spreadsheet_id": {}
},
"additionalProperties": true
}