Method: projects.datasets.list

List all the datasets for the specified project.

HTTP request

GET https://mapsplatformdatasets.googleapis.com/v1/{parent=projects/*}/datasets

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The name of the project to list all the datasets for.

Query parameters

Parameters
pageSize

integer

The maximum number of versions to return per page. If unspecified (or zero), all datasets will be returned.

pageToken

string

The page token, received from a previous datasets.list call. Provide this to retrieve the subsequent page.

Request body

The request body must be empty.

Response body

If successful, the response body contains data with the following structure:

Response to list datasets for the project.

JSON representation
{
  "datasets": [
    {
      object (Dataset)
    }
  ],
  "nextPageToken": string
}
Fields
datasets[]

object (Dataset)

All the datasets for the project.

nextPageToken

string

A token that can be sent as pageToken to retrieve the next page. If this field is omitted, there are no subsequent pages.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

IAM Permissions

Requires the following IAM permission on the parent resource:

  • mapsplatformdatasets.datasets.list

For more information, see the IAM documentation.