Versions Compared

Key

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

...

Code Block
languagec#
titleValidateU2FUser Method
AuthServerU2FResponseAuthServerResponseValidateUser ValidateUser(string authServerPartnerLoginName, 
                      string authServerPartnerLoginPassword, 
                      string authServerPartnerUserLoginName, 
                      string authServerPartnerUserPassword,
                      bool noAuth);

...

WCF parameterdata typedescription
authServerPartnerLoginNamestringSurePassId SurePassID account login name
authServerPartnerLoginPasswordstringSurePassId SurePassID account login key
authServerPartnerUserLoginNamestringUser account login name
authServerPartnerUserPasswordstringUser account login password. If the server is setup to use Active Directory the user will be authenticated using AD.
noAuthboolfalse = verify user name and password;  true=verify username only and return user status

...

Code Block
languagec#
titleSample WCF C# Method
  AuthServerU2FResponseAuthServerResponseValidateUser resp = ValidateUser("accountKey", 
           "accountLogin", 
           "Mandy", 
           "user password",
            true);

...

REST parameterdata typedescription
spAccountLoginNamestringSurePassId SurePassID account login name
spAccountLoginKeystringSurePassId SurePassID account login key
usernamestringuser account login name
typestringvalidate_user
pwstringUser account login password. If the server is setup to use Active Directory the user will be authenticated using AD.
noAuthint0 = verify user name and password;  1=verify username only return user status

...

Code Block
languagejs
titleSample REST/Json Response - Failure
 {
  "errorCode": 9001,
  "errorMessage": "User login failure [Mandy]",
  "type": "validate_user"
}


Code Block
languagejs
titleSample REST/Json Response - Success noAuth
{
  "Devices": [
    {
      "psn": "TSFT-001277",
      "deviceType": 12,
      "otpType": 8,
      "deviceStatus": 0
    },
    {
      "psn": "TSFT-001279",
      "deviceType": 13,
      "otpType": 1,
      "deviceStatus": 0
    },
    {
      "psn": "TSFT-001281",
      "deviceType": 8,
      "otpType": 1,
      "deviceStatus": 0
    }
  ],
  "userStatus": 0,
  "errorCode": 0,
  "errorMessage": "OK",
  "type": "validate_user"
}

...