/r/{repoId}/permissions/{id}

DELETE
https://sample-api.d-velop.cloud
Deleting a permission
You can delete a permission 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 permission.
Responses
204
The permission was deleted successfully.
No content
404
The permission 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/permissions/ID', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));