Versions Compared

Key

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

WCF


Code Block
languagec#
title Method
public AuthServerResponse TapAuthResponse(string authServerPartnerLoginName, 
                 string authServerPartnerLoginPassword, 
                 string authServerPartnerUserLoginName, 
                 string mobile,
				 string response,
			     string authnUserReqId)

...

WCF parameterdata typedescription
authServerPartnerLoginNamestringSurePassId SurePassID account login name
authServerPartnerLoginPasswordstringSurePassId SurePassID account login key
authServerPartnerUserLoginNamestringUser account name
mobilestringMobile number of account that received push message
responsestringResponse to push message sent to mobile device e.g. Yes user accepted message or No.
authnUserReqIdstringSystem generated push notification request Identifier.


Code Block
languagec#
titleSample WCF C# Method
AuthServerResponse  resp = TapAuthResponse("accountLogin",             
            "accountKey", 
            "Mandy", 
            "(123)456-7890",
			"User accepted",
			"?");

...

REST parameterdata typedescription
spAccountLoginNamestringSurePassId SurePassID account login name
spAccountLoginKeystringSurePassId SurePassID account login key
usernamestringuser account login name
typestringdelete_device
mobilestringMobile number of account that received push message
responsestringResponse to push message sent to mobile device e.g. Yes user accepted message or No.
authnUserReqIdstringSystem generated push notification request Identifier.


Code Block
languagejs
titleSample REST/Json Method
{
"spAccountLoginName": "{{spAccountLoginName}}",
"spAccountLoginKey": "{{spAccountLoginKey}}",
"username": "{{username}}",
"type": "tap_auth_response",
"mobile": "(123)456-7890",
"response": "User accepted",
"authnUserReqId": "?"
}

...