POST api/UserManager/ChangeAccessGroup
Changing the access control group
Request Information
URI Parameters
None.
Body Parameters
Access control group
AccessControl| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Group name |
string |
None. |
| Id |
Group ID |
integer |
None. |
| UserIds |
A list of GUIDs of users in the access control group |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"id": 2,
"userIds": [
"b664b436-c9ee-44ba-b56d-c8275629d715",
"8f9bb9e2-4341-4e1d-8c49-f7445a1e4ca0"
]
}
Response Information
Resource Description
Result containing the flag of successful operation
ObjResultOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | boolean |
None. |
|
| Error |
Error description |
string |
None. |
| Success |
Flag of successful operation |
boolean |
None. |
| ErrorCode |
Error code |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": true,
"error": "sample string 2",
"success": true,
"errorCode": 4
}
Parameter Information
group
Access Control Group
| Property | Description |
|---|---|
| Name (String) |
Group name |
| Id (Int64) |
Group ID |
| UserIds (Guid[]) |
A list of GUIDs of users in the access control group |