/r/{repoId}/structures/{id}

DELETE
https://sample-api.d-velop.cloud
Deleting a structure rule
You can delete a structure rule that is no longer required from the repository by applying this request.
Parameters
repoId/string/required
The unique ID of the repository.
id/string/required
The unique ID of the structure rule.
Responses
204
The structure rule was deleted successfully.
No content
404
The structure rule with the specified ID 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: 'DELETE', headers: {accept: 'application/json'}};

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