# List Tabs

> Perform List Tabs through Google Sheets.

Source: [https://genhealth.ai/docs/workflows/integrations/google-sheets/google_sheets_list_tabs](https://genhealth.ai/docs/workflows/integrations/google-sheets/google_sheets_list_tabs)

Integration: [Google Sheets](https://genhealth.ai/docs/workflows/integrations/google-sheets.md)

- Handler: `google_sheets_list_tabs`

## Inputs

- `spreadsheet_id` — Spreadsheet Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `spreadsheet_id` — Spreadsheet Id
- `tabs` — Tabs
- `tab_count` — Tab Count
- `visible_tabs` — Visible Tabs
- `visible_tab_count` — Visible Tab Count
- `error` — Error
- `error_message` — Error 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

```json
{
  "type": "object",
  "required": [
    "spreadsheet_id"
  ],
  "properties": {
    "spreadsheet_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "tabs": {},
    "error": {},
    "success": {},
    "tab_count": {},
    "visible_tabs": {},
    "error_message": {},
    "spreadsheet_id": {},
    "visible_tab_count": {}
  },
  "additionalProperties": true
}
```
