Step 4: Update a User's Password

You may have noticed during your testing that the Users: Update call does not let you update the User’s password. For security purposes, you must send the following request to assign a new password to a User:

PUT https://api.yextapis.com/v2/accounts/{accountId}/users/{userId}/password?v=YYYYMMDD&api_key=API_KEY

{
        "newPassword": "myNewPassword"
}

The request should return a 200 response with no response body. Now try updating the password to something a bit more secure and harder to guess.

Feedback