Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Login name of the user whose password needs to be verifiedverification.

password (Required)

Password of the user.

Code Block
http://yourservername:portnumber/psa/api.do?function=verify-password&username=username&password=password


Return values:

In the case of XML data format, you will be returned an XML string with two elements: uid (the user id of the user) and result (true if the password is correct, false otherwise). For example:

Code Block
languagehtml/xml
<result>
  <uid>90458</uid>
  <match>true</match>
</result>


In the case of JSON, the resultant object will have these two properties i.e. uid and result.

...