/r/{repoId}/restrictionset/{id}/assignments/{assignmentId}

DELETE
https://sample-api.d-velop.cloud
Deleting a restriction set assignment
You can delete a restriction set assignment 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 restriction set.
assignmentId/string/required
The unique ID of the restriction set assignment.
Responses
204
The restriction set assignment was deleted successfully.
No content
404
The restriction set assignment 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/restrictionset/ID/assignments/ASSIGNMENTID', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));