...
WCF parameter | data type | description |
---|---|---|
authServerPartnerLoginName | string | SurePassId account login name |
authServerPartnerLoginPassword | string | SurePassId account login key |
authServerPartnerUserLoginName | string | User account name |
mobile | string | mobileMobile number of account that received push message |
response | stringresponse | Response to push message sent to mobile device e.g. Yes user accepted message or No. |
authnUserReqId | stringauthnUserReqId | System generated push notification request Identifier. |
Code Block | ||||
---|---|---|---|---|
| ||||
AuthServerResponse resp = ReceivePushResponse("accountLogin", "accountKey", "Mandy", "?(123)456-7890", "?User accepted", "?"); |
Code Block | ||||
---|---|---|---|---|
| ||||
if (resp.ErrorCode != 0) { message.Text = resp.ErrorMsg; return false; } |
...
REST parameter | data type | description |
---|---|---|
spAccountLoginName | string | SurePassId account login name |
spAccountLoginKey | string | SurePassId account login key |
username | string | user account login name |
type | string | delete_device |
mobile | stringmobile | Mobile number of account that received push message |
response | stringresponse | Response to push message sent to mobile device e.g. Yes user accepted message or No. |
authnUserReqId | stringauthnUserReqId | System generated push notification request Identifier. |
Code Block | ||||
---|---|---|---|---|
| ||||
{ "spAccountLoginName": "{{spAccountLoginName}}", "spAccountLoginKey": "{{spAccountLoginKey}}", "username": "{{username}}", "type": "receive_push_response", "mobile": "?(123)456-7890", "response": "?User accepted", "authnUserReqId": "?" } |
...