description |
---|
Creating a group can be done by PUT'ing user details resource to the group resource collection. |
Updating a group can be done by PUT'ing group details resource to the group resource location.
PUT /api/management/security/groups/{groupIdentifier}
Name | Parameter type | Type | Description |
---|---|---|---|
groupIdentifier | path | GroupIdentifier | One of the group identifiers |
PUT: /api/management/security/groups/cd7b3be9-c45a-4a35-b359-f978f9dbeb9a
{
"name": "Paper Street Soap Company",
"Description": "Employees of the Paper Street Soap Company",
"type": "contensis",
"custom" : {
"clientId": "PSSC"
}
}
PUT: /api/management/security/groups/Paper%20Street%20Soap%20Company
{
"name": "Paper Street Soap Company",
"Description": "Employees of the Paper Street Soap Company",
"type": "contensis",
"custom" : {
"clientId": "PSSC"
}
}
HTTP status code | Reason | Response model |
---|---|---|
200 | OK | Group |
403 | Forbidden | Error |
404 | NotFound | Error |
422 | UnprocessableEntity | Error |
500 | InternalServerError | Error |