/r

GET
https://sample-api.d-velop.cloud
Retrieving a list of all administrable repositories
In the response, you receive an array of repositories within the object _embedded.
Parameters
Responses
200
The categories were determined successfully.
Content
Media type: application/json
Media type: application/hal+json
404
The administrable repositories could not be determined.
Content
Media type: application/json
{
  "code": {
    "type": "integer",
    "format": "int32",
    "example": 240100
  },
  "reason": {
    "type": "string",
    "nullable": true,
    "example": "Reason why the request failed."
  }
}
Media type: application/hal+json
{
  "code": {
    "type": "integer",
    "format": "int32",
    "example": 240100
  },
  "reason": {
    "type": "string",
    "nullable": true,
    "example": "Reason why the request failed."
  }
}
Show operation

Language

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

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