/r/{repoId}/restrictionsets
GET
Retrieving a list of all the restriction sets
Parameters
repoId/string/required
The unique ID of the repository.
Responses
200
The restriction sets were determined successfully.
Show operation
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://example.com/dmsconfig/r/REPOID/restrictionsets', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));