Skip to documentation
Google Sheets integration

Get Spreadsheet Metadata

Perform Get Spreadsheet Metadata through Google Sheets.

View as Markdown
google_sheets_get_spreadsheet_metadata
write

Inputs

  • spreadsheet_id
    expressionrequired
    Spreadsheet Id

    Required literal value or workflow expression.

  • include_grid_data
    boolean
    Include Grid Data

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • spreadsheet_idSpreadsheet Id
  • titleTitle
  • tabsTabs
  • tab_countTab 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"
  ],
  "properties": {
    "spreadsheet_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "include_grid_data": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "tabs": {},
    "error": {},
    "title": {},
    "success": {},
    "tab_count": {},
    "error_message": {},
    "spreadsheet_id": {}
  },
  "additionalProperties": true
}
View all Google Sheets actions