> ## 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.

# Get BigQuery Dataset

Returns the dataset specified by datasetID.

<Note>
  External Documentation

  To learn more, visit the [GCP documentation](https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets#get).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter  | Description                                                        |
  | ---------- | ------------------------------------------------------------------ |
  | Dataset ID | Dataset ID of the requested dataset.                               |
  | Fields     | Selector specifying which fields to include in a partial response. |
  | Project ID | Project ID of the requested dataset.                               |
</div>

## Example Output

```json theme={"dark"}
{
	"kind": "bigquery#dataset",
	"etag": "SuPqH1qQLPlNy8KkL6BQsA==",
	"id": "project:Test",
	"selfLink": "https://bigquery.googleapis.com/bigquery/v2/projects/project/datasets/Test",
	"datasetReference": {
		"datasetId": "Test",
		"projectId": "project"
	},
	"defaultTableExpirationMs": "5184000000",
	"access": [
		{
			"role": "WRITER",
			"specialGroup": "projectWriters"
		},
		{
			"role": "OWNER",
			"specialGroup": "projectOwners"
		},
		{
			"role": "READER",
			"specialGroup": "projectReaders"
		}
	],
	"creationTime": "1639666438220",
	"lastModifiedTime": "1639666438220",
	"location": "us-central1",
	"defaultPartitionExpirationMs": "5184000000",
	"type": "DEFAULT"
}
```

## Workflow Library Example

[Get Bigquery Dataset with Gcp and Send Results Via Email](https://library.blinkops.com/workflows/get-bigquery-dataset-with-gcp-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/get-bigquery-dataset-with-gcp-and-send-results-via-email/canvas" />
</div>
