Bulk Change Eligible Company

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_company

Example Body Request


{
    "parameters": {
        "company_id": "333",
        "auth_user_id__username__in": [
            "user1",
            "user2",
            "user3"
        ]
    },
    "options": {
        "action": "ADD",
        "company_id_list": [101,201,301],
        "company_code_list": ["COMP1","COMP2","COMP3"],
        "commit_frequency": 1

    }
}