ResendWarrantyEmail2 Input
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ResendWarrantyEmail2 xmlns="http://www.cpscorporation.com/services/">
<ResendEmailRequest>
<Authentication>
<DealerID>int</DealerID>
<DealerKey>string</DealerKey>
</Authentication>
<WarrantySerial>string</WarrantySerial>
<Email>string</Email>
</ResendEmailRequest>
</ResendWarrantyEmail2>
</soap:Body>
</soap:Envelope>
Argument |
Type |
Details |
Authentication |
AuthenticationType |
|
Authentication.DealerID |
Int |
Your Dealer ID |
Authentication.DealerKey |
String |
Your Dealer Key |
WarrantySerial |
String |
Warranty # to be cancelled |
Email |
String |
Recipient |
ResendWarrantyEmail2 Output
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<CancelWarranty2Response xmlns="http://www.cpscorporation.com/services/">
<CancelWarranty2Result>
<Errors>
<ErrorsType>
<ErrorID>int</ErrorID>
<ErrorMessage>string</ErrorMessage>
</ErrorsType>
</Errors>
<Result>string</Result>
</CancelWarranty2Result>
</CancelWarranty2Response>
</soap12:Body>
</soap12:Envelope>
Argument |
Type |
Details |
Errors.ErrorsType |
ErrorsType (repeatable) |
|
Errors.ErrorsType.ErrorID |
Int |
Error Number |
Errors.ErrorsType.ErrorMessage |
String |
Detailed error message |
Result |
String |
success OR fail, or another way success would be on an empty Errors array |