/r/{repoId}/objectmanagement/datasets

GET
https://sample-api.d-velop.cloud
Retrieving a list of all datasets
In the response, you receive an array of datasets within the object _embedded.
Parameters
repoId/string/required
The unique ID of the repository.
Responses
200
The datasets were determined successfully.
Content
Media type: application/json
Media type: application/hal+json
Show operation

Language

const options = {method: 'GET', headers: {accept: 'application/json'}};

fetch('https://example.com/dmsconfig/r/REPOID/objectmanagement/datasets', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));