Unable to reactive an inactive user

AyushPandey
New Contributor II

Hi all,
I am facing an issue with reactivating an inactive user i tried the following json with databricks cli 

run_update = {
  "schemas": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ],
  "Operations": [
    {
      "op": "replace",
      "path": "active",
      "value": [
        {
          "value": "true"
        }
      ]
    }
  ]
}
But the user status still remains inactive. Any leads would be helpful.