Get spreadsheet by data filter
documentedReturns the spreadsheet at the given ID.
POST /v4/spreadsheets/{spreadsheetId}:getByDataFilterSpreadsheetsno implementation yet0 runsNo 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}} }'