Bulk Change Eligible Group
The Bulk Change Eligible Group API allows you to add/remove the user eligible groups in bulk. You can update single or multiple user eligible facility all at once. Once updates are made, they will reflect in the User UI --> Eligible Groups.
URL
POST ...../v10/entity/user/bulk_change_eligible_group
Example Body Request
{
"parameters": {
"company_id": "222",
"auth_user_id__username__in": [
"user1",
"user2",
"user3"
]
},
"options": {
"action": "ADD",
"group_id_list": [10,20,21],
"group_name_list": ["GRP1","GRP2","GRP3"],
"commit_frequency": 1
}