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": [
"1252c805-ebf4-42e4-b99d-fd9423e15e09",
"515cd999-7eb8-4166-ba3c-bd5402e2a161"
]
}
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 |