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

PUT
https://sample-api.d-velop.cloud
Changing a permission
If you want to make changes to an existing permission, you can use this request.
Parameters
repoId/string/required
The unique ID of the repository.
id/string/required
The unique ID of the permission.
Responses
200
The permission was changed successfully.
No content
400
Invalid data was transferred.
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."
  }
}
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: 'PUT',
  headers: {accept: 'application/json', 'content-type': 'application/hal+json'},
  body: '{"assignments":"test","id":"00000000-0000-0000-0000-000000000000","name":"supplier permission","restrictions":"test"}'
};

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