Call Instructions:
This interface is used to batch remove members for a specified group
This interface is called only by system administrators
Interface Information | |||
---|---|---|---|
Name | remove member | ||
Address | /rest/tools/1.0/api/group/removeUserFromGroup | ||
Method | POST | ||
Return Type | Json | ||
Authentication | Basic,token | ||
Header Parameter | |||
Parameter name | Required | Parameter type | Description |
ContentType | Y | String | application/json |
body Parameters | |||
Parameter name | Required | Parameter type | Description |
groupName | Y | String | group name |
userNames | Y | String[] | user name list |
return value format | |||
Field | Type | Description | |
code | int | ||
msg | String | ||
data | String | { "name":"user name", "key":"user key", "fullName":"full name", "email":"email" }] } |
Example Postman call
Example body request parameters:
{ "groupName":"test_group", "userNames":["aa"] }
Example return value
{ "code": 0, "msg": "Success", "data": { "groupName": "test_group", "users": [ { "name": "aabb", "key": "40288c8281f00b880181f04e469a0000", "fullName": "d-bb", "email": "bbaa@shdsd.com" } ] } }