Updating Users
Should you need to update a user, such as changing the uid
you initially set in during User Provisioning, you may make a PUT request to modify the user:
Example
PUT https://api.validic.com/v1/organizations/{ORGANIZATION_ID}/users/{USER_ID}.json
PUT https://api.validic.com/v1/organizations/5176906c6deddac02c000001/users/51552cd7fded0807c4000017.json -H 'Content-Type: application/json' { "user": { "uid": "abcde" }, "access_token": "e61467e3845e8a66f7453dc55ea3fc445d1b879a6f96ebe7b243badbeae04f63" } 200 { "code": 200, "message": "The user has been successfully updated", "user": { "_id": "51552cd7fded0807c4000017", "uid": "abcde", "profile": null } }