Files
AutoGPT/docs/integrations/block-integrations/google/sheet.md
Nicholas Tindle 90466908a8 refactor(docs): restructure platform docs for GitBook and remove MkDo… (#11825)
<!-- Clearly explain the need for these changes: -->
we met some reality when merging into the docs site but this fixes it
### Changes 🏗️
updates paths, adds some guides
<!-- Concisely describe all of the changes made in this pull request:
-->
update to match reality
### Checklist 📋

#### For code changes:
- [x] I have clearly listed my changes in the PR description
- [x] I have made a test plan
- [x] I have tested my changes according to the test plan:
  <!-- Put your test plan here: -->
  - [x] deploy it and validate

<!-- CURSOR_SUMMARY -->
---

> [!NOTE]
> Aligns block integrations documentation with GitBook.
> 
> - Changes generator default output to
`docs/integrations/block-integrations` and writes overview `README.md`
and `SUMMARY.md` at `docs/integrations/`
> - Adds GitBook frontmatter and hint syntax to overview; prefixes block
links with `block-integrations/`
> - Introduces `generate_summary_md` to build GitBook navigation
(including optional `guides/`)
> - Preserves per-block manual sections and adds optional `extras` +
file-level `additional_content`
> - Updates sync checker to validate parent `README.md` and `SUMMARY.md`
> - Rewrites `docs/integrations/README.md` with GitBook frontmatter and
updated links; adds `docs/integrations/SUMMARY.md`
> - Adds new guides: `guides/llm-providers.md`,
`guides/voice-providers.md`
> 
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit
fdb7ff8111. This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot).</sup>
<!-- /CURSOR_SUMMARY -->

---------

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: bobby.gaffin <bobby.gaffin@agpt.co>
2026-01-23 06:18:16 +00:00

2.2 KiB

Google Sheets Read

What it is

A block that reads data from a Google Sheets spreadsheet.

What it does

This block retrieves information from a specified range within a Google Sheets spreadsheet.

How it works

The block connects to Google Sheets using provided credentials, then fetches data from the specified spreadsheet and range.

Inputs

Input Description
Credentials Authentication information required to access Google Sheets
Spreadsheet ID The unique identifier of the spreadsheet you want to read from
Range The specific area of the spreadsheet you want to read (e.g., "Sheet1!A1:B2")

Outputs

Output Description
Result The data retrieved from the spreadsheet, organized in rows and columns
Error Any error message that occurred during the process

Possible use case

A marketing team could use this block to automatically retrieve the latest campaign performance data from a shared Google Sheets document for analysis and reporting.


Google Sheets Write

What it is

A block that writes data to a Google Sheets spreadsheet.

What it does

This block allows you to input data into a specified range within a Google Sheets spreadsheet.

How it works

The block authenticates with Google Sheets using provided credentials, then updates the specified spreadsheet range with the given data.

Inputs

Input Description
Credentials Authentication information required to access Google Sheets
Spreadsheet ID The unique identifier of the spreadsheet you want to write to
Range The specific area of the spreadsheet where you want to write data (e.g., "Sheet1!A1:B2")
Values The data you want to write to the spreadsheet, organized in rows and columns

Outputs

Output Description
Result Information about the write operation, such as the number of cells, columns, and rows updated
Error Any error message that occurred during the process

Possible use case

An automated inventory system could use this block to update stock levels in a Google Sheets spreadsheet whenever products are sold or restocked, ensuring real-time inventory tracking.