We are trying to update employees in Clover via the REST APIs and while we can update the nickname and pin fields, we cannot update the name or role fields.
We pass it this string: {"name":"Nikolas","nickname":"Nick","pin":"0001","role":"MANAGER"}
We also tried retrieving the specific role id and passing the string as: {"name":"Nikolas","nickname":"Nick","pin":"0001","roles":["id":"ABCDEFGHIJ"]}
And it does not reject it outright, but it is not updating the name or role fields either.
We can create an employee with that same string and everything go across, it is the updating that is failing.
Can you please let me know what is going on here?
Thanks.