GET
/
v1
/
team
/
datasets
curl --request GET \
  --url https://ai.data.cloud/api/v1/team/datasets \
  --header 'x-pd-api-key: <api-key>'
{
  "code": 0,
  "data": {
    "pageNumber": 1,
    "pageSize": 10,
    "total": 1,
    "records": [
      {
        "id": "dataset-dasfadsgadsgas",
        "name": "mysql",
        "description": "mysql databases"
      }
    ]
  }
}

Authorizations

x-pd-api-key
string
header
required

Headers

x-pd-external-trace-id
string

The external trace ID. The length ranges from 0 to 128 characters.

Query Parameters

pageNumber
integer

The number of pages to display. If not specified, the default value 1 will be used.

pageSize
integer

The number of items on a single page. If not specified, the default value 10 will be used.

name
string

The keyword for search. Any dataset with its name or description that matches the keyword will be returned.

It not specified, all datasets will be returned.

Response

200 - application/json

The response is of type object.