> ## Documentation Index
> Fetch the complete documentation index at: https://docs.phinite.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Sheets Integration

> Read and write rows in Google Sheets.

## Parameters

<ParamField body="spreadsheetId" type="string" required>
  Spreadsheet ID
</ParamField>

<ParamField body="range" type="string" required>
  A1 notation range
</ParamField>

<ParamField body="values" type="array">
  Values to write
</ParamField>

## Example

<RequestExample>
  ```json Tool Input theme={null}
  {
    "spreadsheetId": "sheet_123",
    "range": "Sheet1!A1:C1",
    "values": [["A","B","C"]]
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  { "updated": 1 }
  ```
</ResponseExample>
