WCF
Code Block | ||||
---|---|---|---|---|
| ||||
public AuthServerResponse TapAuthResponse(string authServerPartnerLoginName, string authServerPartnerLoginPassword, string authServerPartnerUserLoginName, string mobile, string response, string authnUserReqId) |
...
WCF parameter | data type | description |
---|---|---|
authServerPartnerLoginName | string | SurePassId SurePassID account login name |
authServerPartnerLoginPassword | string | SurePassId SurePassID account login key |
authServerPartnerUserLoginName | string | User account name |
mobile | string | Mobile number of account that received push message |
response | string | Response to push message sent to mobile device e.g. Yes user accepted message or No. |
authnUserReqId | string | System generated push notification request Identifier. |
Code Block | ||||
---|---|---|---|---|
| ||||
AuthServerResponse resp = TapAuthResponse("accountLogin", "accountKey", "Mandy", "(123)456-7890", "User accepted", "?"); |
...
REST parameter | data type | description |
---|---|---|
spAccountLoginName | string | SurePassId SurePassID account login name |
spAccountLoginKey | string | SurePassId SurePassID account login key |
username | string | user account login name |
type | string | delete_device |
mobile | string | Mobile number of account that received push message |
response | string | Response to push message sent to mobile device e.g. Yes user accepted message or No. |
authnUserReqId | string | System generated push notification request Identifier. |
Code Block | ||||
---|---|---|---|---|
| ||||
{ "spAccountLoginName": "{{spAccountLoginName}}", "spAccountLoginKey": "{{spAccountLoginKey}}", "username": "{{username}}", "type": "tap_auth_response", "mobile": "(123)456-7890", "response": "User accepted", "authnUserReqId": "?" } |
...