WiiSOAP/SOAP-WSC/IAS/removeAccount.xml
CornierKhan1 b289356589
Like Snoot said: "be free my files"
No, it's not functional yet.
2018-08-23 21:37:00 +10:00

70 lines
2.3 KiB
XML

<!--
OSC Note:
This is an IAS SOAP Template for removing your Wii Shop Account.
The actual contents between each XML Statement have been censored for security reasons.
-->
<!-- Request -->
POST /ias/services/IdentityAuthenticationSOAP HTTP/1.1
Host: ias.shop.wii.com
User-Agent: RVL ECSHOP 4.8.0 Jul 27 2012 16:52:03
Connection: Keep-Alive
Accept: application/xml
Accept-Charset: UTF-8
Content-type: text/xml; charset=utf-8
SOAPAction: urn:ias.wsapi.broadon.com/Unregister
Content-Length: 2165
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ias="urn:ias.wsapi.broadon.com">
<SOAP-ENV:Body>
<ias:Unregister xsi:type="ias:UnregisterRequestType">
<ias:Version>2.0</ias:Version>
<ias:MessageId>$MsgId</ias:MessageId>
<ias:DeviceId>$DevId</ias:DeviceId>
<ias:DeviceToken>$DevToken</ias:DeviceToken>
<ias:AccountId>$AccId</ias:AccountId>
<ias:Region>$Reg</ias:Region>
<ias:Country>$Country</ias:Country>
<ias:Language>$Language</ias:Language>
<ias:DeviceCert>$DevCert</ias:DeviceCert>
<ias:SerialNumber>$SerNo</ias:SerialNumber>
<ias:Signature>$Sign</ias:Signature>
<ias:CertChain>$CertChain</ias:CertChain>
<ias:Challenge>$Challenge</ias:Challenge>
</ias:Unregister>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
<!-- Response -->
HTTP/1.1 200 OK
Date: Sun, 08 Jul 2018 12:56:35 GMT
Server: Apache/2.2.19
Keep-Alive: timeout=15, max=300
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/xml;charset=utf-8
229
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<UnregisterResponse xmlns="urn:ias.wsapi.broadon.com">
<Version>2.0</Version>
<DeviceId>$DevId</DeviceId>
<MessageId>$MsgId</MessageId>
<TimeStamp>$TimeStamp</TimeStamp>
<ErrorCode>$ErrCode</ErrorCode>
<ServiceStandbyMode>false</ServiceStandbyMode>
</UnregisterResponse>
</soapenv:Body>
</soapenv:Envelope>
0