Replaces the entire user record with the JSON object passed in and returns true if successful and false if not. The entire user record must be passed in with and changes you wish to make.
name | type | required | description |
---|---|---|---|
sid | string | yes | unique identifier for the user |
body | object | yes | JSON object representing the user that is passed in as the body of the post. |
Append your key and the token obtained from either Access/exchange-token or Access/impersonate to the querystring (key=mykey&token=kj123khb123hb123hb123jh123) or to the headers (Authorization:Bearer kj123khb123hb123hb123jh123) of your request.
{ "AddressLine1": "", "AddressLine2": "", "City": "", "CostCenter": "", "Country": "", "Custom1": "", "Custom2": "", "Department": "", "Division": "", "Email": "jdoe@integrify.com", "Locale": "en-GB", "Location": "", "ManagerSID": "", "NameFirst": "John", "NameLast": "Doe", "NameMiddle": "", "NetworkID": "John", "Password": null, "PasswordConfirm": null, "Phone": "", "Postal": "", "State": "", "TimeZone": "Pacific Standard Time", "Title": "", "UserName": "John" }
true