Versions Compared

Key

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

...

WCF parameterdata typedescription
authServerPartnerLoginNamestringSurePassId account login name
authServerPartnerLoginPasswordstringSurePassId 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.
noAuthbooltrue = verify user name and password;  false=verify username only and return user status
Code Block
languagec#
titleSample WCF C# Method
  AuthServerU2FResponse resp = ValidateUser("accountKey", 
           "accountLogin", 
           "accountKeyMandy", 
           "user password",
            true);

...

REST parameterdata typedescription
spAccountLoginNamestringSurePassId account login name
spAccountLoginKeystringSurePassId 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.
noAuthint1 = verify user name and password;  0=verify username only return user status
Code Block
languagejs
titleSample REST/Json Method
 {
  "username": "Mandy",
  "spAccountLoginName": "accountLogin",
  "spAccountLoginKey": "accountKey",
  "type": "validate_user",
  "pw": "user password"
  "noAuth: 1
}

...