List datasets
Lists datasets for the authenticated user, most recently updated first. Supports an optional case-insensitive name search.
Query parameters
Case-insensitive substring to match against dataset names. When omitted, datasets are not filtered by name.
Response
Datasets retrieved successfully
Example response
{
"datasets": [
{
"creation_time": "2000-01-23T04:56:07+00:00",
"user_id": "user_id",
"dataset_id": "dataset_id",
"name": "name",
"cover_asset_identifier": {
"asset_type": null,
"asset_id": "asset_id"
}
},
{
"creation_time": "2000-01-23T04:56:07+00:00",
"user_id": "user_id",
"dataset_id": "dataset_id",
"name": "name",
"cover_asset_identifier": {
"asset_type": null,
"asset_id": "asset_id"
}
}
]
}Changes
Changed in 2 of the 34 revisions of this API.42
- ▲
the response property
//became nullable for the statusresponse-property-became-nullable
- ▲
the
//response's property type changed fromobjectto no type for statusresponse-property-type-changed
- ▲
removed the required property
///from the response with the statusresponse-required-property-removed
- ▲
removed the required property
///from the response with the statusresponse-required-property-removed
- ○
added to the
//response propertyallOflist for the response statusresponse-property-all-of-added
- ▲
- ○
added the new optional
queryrequest parametersearchnew-optional-request-parameter
- ○