WCF


public AuthServerResponse ReceivePushResponse(string authServerPartnerLoginName, 
                 string authServerPartnerLoginPassword, 
                 string authServerPartnerUserLoginName, 
                 string mobile,
				 string response,
			     string authnUserReqId)


WCF parameterdata typedescription
authServerPartnerLoginNamestringSurePassId account login name
authServerPartnerLoginPasswordstringSurePassId account login key
authServerPartnerUserLoginNamestringUser account name
mobilestringmobile
responsestringresponse
authnUserReqIdstringauthnUserReqId


AuthServerResponse  resp = ReceivePushResponse("accountLogin",             
            "accountKey", 
            "Mandy", 
            "?",
	        "?",
			"?");


 if (resp.ErrorCode != 0)  {      
       message.Text = resp.ErrorMsg;
       return false;
 }


REST


REST parameterdata typedescription
spAccountLoginNamestringSurePassId account login name
spAccountLoginKeystringSurePassId account login key
usernamestringuser account login name
typestringdelete_device
mobilestringmobile
responsestringresponse
authnUserReqIdstringauthnUserReqId


{
"spAccountLoginName": "{{spAccountLoginName}}",
"spAccountLoginKey": "{{spAccountLoginKey}}",
"username": "{{username}}",
"type": "receive_push_response",
"mobile": "?",
"response": "?",
"authnUserReqId": "?"
}


 {
  "errorCode": 0,
  "errorMessage": "OK",
  "type": "receive_push_response"
}