Sign in

Get spreadsheet by data filter

documented

Returns the spreadsheet at the given ID.

POST /v4/spreadsheets/{spreadsheetId}:getByDataFilterSpreadsheetsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://sheets.googleapis.com/v4/spreadsheets/{{$spreadsheetId}}:getByDataFilter" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"dataFilters": [{"gridRange": {"sheetId": {{$sheetId}}, "startRowIndex": {{$startRowIndex}}, "endRowIndex": {{$endRowIndex}}, "startColumnIndex": {{$startColumnIndex}}, "endColumnIndex": {{$endColumnIndex}}}}], "includeGridData": {{$includeGridData}}, "excludeTablesInBandedRanges": {{$excludeTablesInBandedRanges}} }'
Get spreadsheet by data filter · Google Sheets · OpenIntegrations