/r/{repoId}/structures

GET
https://sample-api.d-velop.cloud
Retrieving a list of all structure rules
In the response, you receive an array of structure rules within the object _embedded.
Parameters
repoId/string/required
The unique ID of the repository.
Responses
200
The structure rules 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/structures', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));