get http://<host>:9100/api/versioned/v1/datasets
Retrieves a list of all datasets.
Filtering Datasets
The results returned by this endpoint can be filtered using an optional query parameter. Any string-valued field can be filtered on, but the most common use case is to retrieve a dataset by its External ID. Filters take the form of fieldName==<value>
. For example, the following query can be used to get myDataset.csv.
curl -X GET --header 'Accept: application/json' --header 'Authorization: BasicCreds <credentials>' 'http://<host>:9100/api/versioned/v1/datasets?filter=externalId%3D%3DmyDataset.csv'
Response Fields
Returns a list of datasets, where each dataset is described by the dataset object.