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": [
"3484504d-058d-4484-a132-e395f82dea6f",
"22111fc2-e44d-4b68-ba8e-c4ef19d8166e"
]
}
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 |