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

# Search Spreadsheets

Search for spreadsheets based on a query.

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                      |
  | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Query     | A query for filtering the file results.<br /><br />See the [Search for files & folders](https://developers.google.com/drive/api/guides/search-files) guide for supported syntax. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                                                                                                                                                                                                                                                  |
  | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Delegated User Override | Perform the action on behalf of another user, overriding the delegated user defined in the connection.<br /><br />If not specified, the delegated user is the one provided in the connection.<br /><br />Has no effect when using an OAuth connection.<br /><br />NOTE: the connection details are not edited by this input. |
</div>

## Example Output

```json theme={"dark"}
{
	"kind": "drive#fileList",
	"incompleteSearch": false,
	"files": [
		{
			"kind": "drive#file",
			"mimeType": "application/vnd.google-apps.spreadsheet",
			"id": "231049-fsdf-324-sdfsd-f-234asdasdasd",
			"name": "test1"
		},
		{
			"kind": "drive#file",
			"mimeType": "application/vnd.google-apps.spreadsheet",
			"id": "231049-fsdf-324-sdfsd-f-234",
			"name": "test2"
		}
	]
}
```

## Workflow Library Example

[Search Spreadsheets with Google Sheets and Send Results Via Email](https://library.blinkops.com/workflows/search-spreadsheets-with-google-sheets-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/search-spreadsheets-with-google-sheets-and-send-results-via-email/canvas" />
</div>
