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

PUT
https://sample-api.d-velop.cloud
Changing a restriction set assignment
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
200
The restriction set assignment 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 restriction set 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: '{"id":"00000000-0000-0000-0000-000000000000","type":"GROUP | NO_ASSIGNMENT","values":["Value A","Value B","Value C"]}'
};

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));