Example Open Invoice Order
<?xml version="1.0"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-
instance">
<soap:Body>
<ns1:retrieveDetailResponse xmlns:ns1="http://openinvoice.services.adyen.com">
<ns1:result>
<lines xmlns="http://openinvoice.services.adyen.com">
<InvoiceLine>
<currency>EUR</currency>
<description>Product 1</description>
<itemPrice>325</itemPrice>
<itemVAT>75</itemVAT>
<lineReference>1</lineReference>
<numberOfItems>4</numberOfItems>
<vatCategory>High</vatCategory>
</InvoiceLine>
<InvoiceLine>
<currency>EUR</currency>
<description>Product 2</description>
<itemPrice>350</itemPrice>
<itemVAT>0</itemVAT>
<lineReference>2</lineReference>
<numberOfItems>1</numberOfItems>
<vatCategory>None</vatCategory>
</InvoiceLine>
</lines>
</ns1:result>
</ns1:retrieveDetailResponse>
</soap:Body>
</soap:Envelope>
Example 2: SOAP Message Responding with the Line Specification
<?xml version="1.0"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-
instance">
<soap:Body>
<ns1:retrieveDetail xmlns:ns1="http://openinvoice.services.adyen.com">
<ns1:request>
<amount xmlns:ns1="http://openinvoice.services.adyen.com">
<currency xmlns="http://common.services.adyen.com">EUR</currency>
<value xmlns="http://common.services.adyen.com">-350</value>
</amount>
<merchantAccount xmlns:ns1="http://openinvoice.services.adyen.com">
YourMerchantAccount
</merchantAccount>
<reference xmlns:ns1="http://openinvoice.services.adyen.com">
TheMerchantReference
</reference>
</ns1:request>
</ns1:retrieveDetail>
</soap:Body>
</soap:Envelope>
Example 3: SOAP Message Requesting the Line Specification of a Refund
Copyright © Adyen B.V. 2010 13