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": [
"bf6daa51-1c90-459b-b237-46a364ab37f4",
"8ff4d09a-f76c-4377-a7dc-e93a9f997e36"
]
}
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 |