Remove device registration
De-register device associated with source key. The device will return the screen prompting for registration pin. This allows the device to be associated with another source key.
string deletePosDeviceRegistration ( ueSecurityToken Token)
Type | Name | Description |
---|---|---|
ueSecurityToken | Token | Merchant security token: used to identify merchant and retrieve the custom fields. |
string | Response | Confirmation message |
The following exceptions (errors) are applicable to this method.
Code | Message | Advice |
---|
For directions on how to set up the WSDL link, create “$token” and “$client”, go to PHP Soap How-to.
Request:
<?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://www.usaepay.com/soap/2.0/uedocs"> <SOAP-ENV:Body> <ns1:deleteDeviceRegistration> <Token> <ClientIP>192.168.0.1</ClientIP> <PinHash> <HashValue>3fec682baa4395b2b93b809d609bb74fccb50d94</HashValue> <Seed>1365109682326295809</Seed> <Type>sha1</Type> </PinHash> <SourceKey>e42SYc86C4uvlvyP62ow54Kv93SZsJVm</SourceKey> </Token> </ns1:deleteDeviceRegistration> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
Response:
<?xml version="1.0"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://www-stage.usaepay.com/soap/2.0/uedocs"> <SOAP-ENV:Body> <deleteDeviceRegistrationResponse> <Status>registration cancelled</Status> </deleteDeviceRegistrationResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
Version | Change |
---|---|
1.6 | Method added in this release |