RapidIdentity Product Guides - 2019 Rolling Release

Set User Password

A REST call to set a user's password.

POST  /restservices/restservice.svc/SetUserPassword

REQUEST:

    curl
      --request POST
      --url https://<MFAServerHostname>/restservices/restservice.svc/SetUserPassword
      --data '{
        "userName":<string>,
        "domainName":<string>,
        "pwd":<string>,
        "apiKey":<string>
      }'
  

REQUEST BODY:

    {
      "userName":<string>,
      "domainName":<string>,
      "pwd":<string>,
      "apiKey":<string>
    }
  

RESPONSE 200 OK:

    {
      "status": "success",
      "Result": "User <domainName>\\<userName> Password Updated Successfully"
    }