Disable Device

Disable Device

WCF



Method
public AuthServerResponse DisableDevice(string authServerPartnerLoginName, string authServerPartnerLoginPassword, string authServerPartnerUserLoginName, string printedSerialNumber)

WCF parameter

data type

description

WCF parameter

data type

description

authServerPartnerLoginName

string

SurePassID account login name

authServerPartnerLoginPassword

string

SurePassID account login key

authServerPartnerUserLoginName

string

User account name

printedSerialNumber

string

Serial number of the device

Sample WCF C# Method
AuthServerResponse resp = DisableDevice("accountLogin", "accountKey", "Mandy", "OATH_1234567");
Sample WCF C# Repsonse
if (resp.ErrorCode != 0) { message.Text = resp.ErrorMsg; return false; }



REST



REST parameter

data type

description

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

psn

string

Serial number of the device

Sample REST/Json Method
{ "spAccountLoginName": "{{spAccountLoginName}}", "spAccountLoginKey": "{{spAccountLoginKey}}", "username": "{{username}}", "psn": "OAUTH_1234567", "type": "disable_device" }
Sample REST/Json Response
 { "errorCode": 0, "errorMessage": "OK", "type": "disable_device" }