Definition
https://sandbox.bluesnap.com/services/2/orders
The Create Order request enables you to create an order for a shopper who already exists in your BlueSnap account.
If you wish to both create a new shopper and place an order, refer to the Create Order and New Shopper service.
Using Masterpass or Visa Checkout for the order
If the shopper is paying via a Masterpass or Visa Checkout wallets, you will first need to send an Update Shopper request with the
wallet-id
so that the payment information will be saved to the shopper. You can then use the payment info from the wallet to process the order by specifying the relevant credit card in your Create Order request.
Collecting CVV during checkout
We recommend capturing the shopper’s CVV during checkout and including this value within the order request to BlueSnap. Orders with CVV generally result in higher success rates since the issuers' fraud and risk engines consider these orders to be a lower risk.
Request Content
order
container required, contains the following properties (refer to order):
Property | Type | Required |
---|---|---|
ordering-shopper | container | required (refer to ordering-shopper) |
transaction-order-source | string | |
cart | container | required (refer to cart) |
expected-total-price | container | required (refer to expected-total-price) |
soft-descriptor | string | optional |
descriptor-phone-number | string | optional |
affiliate-id | long | optional |
seller-order-id | string | optional |
three-d-secure | container | optional (refer to three-d-secure) |
Response Details
If successful, the response HTTP status code is 201 Created.
The Location response header contains the URI of the newly created order
resource.
The response body contains the order
resource.
For details about possible errors, refer to: General Errors, Payment & Processor Errors, Shopper Errors, and Fraud Errors.
Examples
Request Examples
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575992</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>15.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575996</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>VISA</card-type>
</credit-card>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>15.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575992</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<seller-order-id>myorder123</seller-order-id>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>15.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19541724</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<fraud-info>
<fraud-session-id>1234567890</fraud-session-id>
</fraud-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2183634</sku-id>
<sku-charge-price>
<charge-type>initial</charge-type>
<amount>8.00</amount>
<currency>USD</currency>
</sku-charge-price>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>8.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19505364</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2181034</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>5.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575992</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<trial-days>14</trial-days>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>15.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575992</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-charge-price>
<charge-type>initial</charge-type>
<amount>20.00</amount>
<currency>USD</currency>
</sku-charge-price>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>20.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<soft-descriptor>DescTest</soft-descriptor>
<ordering-shopper>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>MASTERCARD</card-type>
</credit-card>
<shopper-id>19468518</shopper-id>
<seller-shopper-id/>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
<accept-language>en-us</accept-language>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2117308</sku-id>
<sku-charge-price>
<charge-type>recurring</charge-type>
<amount>10.22</amount>
<currency>USD</currency>
</sku-charge-price>
<soft-descriptor/>
</sku>
<quantity>1</quantity>
</cart-item>
<cdod>false</cdod>
</cart>
<expected-total-price>
<amount>10.22</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<?xml version="1.0" encoding="UTF-8"?>
<order xmlns="http://ws.plimus.com">
<soft-descriptor>DescTest</soft-descriptor>
<ordering-shopper>
<shopper-id>19505364</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2178314</sku-id>
<sku-name>overriding SKU name</sku-name>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>100.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575992</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
</sku>
<quantity>1</quantity>
<sku-parameter>
<param-name>example_custom_param1</param-name>
<param-value>1111</param-value>
</sku-parameter>
<sku-parameter>
<param-name>example_custom_param2</param-name>
<param-value>2222</param-value>
</sku-parameter>
</cart-item>
</cart>
<expected-total-price>
<amount>15.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575992</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
<coupons>
<coupon>couponcode123</coupon>
</coupons>
</cart>
<expected-total-price>
<amount>7.50</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575996</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>VISA</card-type>
</credit-card>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2180514</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>55.00</amount>
<currency>EUR</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19547628</shopper-id>
<web-info>
<ip>0.0.0.0</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<security-code>123</security-code>
<card-type>VISA</card-type>
</credit-card>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>29.99</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19557376</shopper-id>
<web-info>
<ip>0.0.0.0</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<sepa-direct-debit>
<iban-first-four>DE09</iban-first-four>
<iban-last-four>7893</iban-last-four>
</sepa-direct-debit>
<authorized-by-shopper>true</authorized-by-shopper>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>35.51</amount>
<currency>EUR</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19557376</shopper-id>
<web-info>
<ip>0.0.0.0</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<ecp>
<account-type>CONSUMER_CHECKING</account-type>
<public-account-number>99992</public-account-number>
<public-routing-number>75150</public-routing-number>
</ecp>
<authorized-by-shopper>true</authorized-by-shopper>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>29.99</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19569784</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<ecp>
<account-type>CONSUMER_SAVINGS</account-type>
<public-account-number>99993</public-account-number>
<public-routing-number>75151</public-routing-number>
</ecp>
<authorized-by-shopper>true</authorized-by-shopper>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2188774</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>10.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575996</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<wallet>
<wallet-type>APPLE_PAY</wallet-type>
<encoded-payment-token>ImRhdGEiOiJuY1AvRitIUy8zeG5bXhCMFd</encoded-payment-token>
</wallet>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>15.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19575996</shopper-id>
<web-info>
<ip>62.219.121.253</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
<wallet>
<wallet-type>GOOGLE_PAY</wallet-type>
<encoded-payment-token>eyJwYXltZW50TWV0aG9kVG9rZW4iOnsidG99</encoded-payment-token>
</wallet>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>15.00</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19574318</shopper-id>
<web-info>
<ip>0.0.0.0</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<transaction-order-source>MOTO</transaction-order-source>
<cart>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>29.99</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19574268</shopper-id>
<web-info>
<ip>0.0.0.0</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<three-d-secure>
<three-d-secure-reference-id>5381</three-d-secure-reference-id>
</three-d-secure>
<cart>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>29.99</amount>
<currency>USD</currency>
</expected-total-price>
</order>
curl -v -X POST https://sandbox.bluesnap.com/services/2/orders \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<order xmlns="http://ws.plimus.com">
<ordering-shopper>
<shopper-id>19574354</shopper-id>
<web-info>
<ip>0.0.0.0</ip>
<remote-host>www.merchant.com</remote-host>
<user-agent>Mozilla/5.0 (Linux; X11)</user-agent>
</web-info>
</ordering-shopper>
<cart>
<cart-item>
<sku>
<sku-id>2186284</sku-id>
</sku>
<quantity>1</quantity>
</cart-item>
</cart>
<expected-total-price>
<amount>34.17</amount>
<currency>USD</currency>
</expected-total-price>
<transaction-initiator>MERCHANT</transaction-initiator>
<network-transaction-info>
<original-network-transaction-id>019071907460745</original-network-transaction-id>
</network-transaction-info>
</order>'
Response Examples
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950669</order-id>
<ordering-shopper>
<shopper-id>19575992</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855984</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B2221C43F0CAD8F24</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>4</expiration-month>
<expiration-year>2020</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>us</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950671</order-id>
<ordering-shopper>
<shopper-id>19575996</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855986</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B4A86A4EAD61A83C9</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>Master Card</card-type>
<card-sub-type>DEBIT</card-sub-type>
<expiration-month>9</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950669</order-id>
<seller-order-id>myorder123</seller-order-id>
<ordering-shopper>
<shopper-id>19575992</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855984</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B2221C43F0CAD8F24</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>4</expiration-month>
<expiration-year>2020</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3950449</order-id>
<ordering-shopper>
<shopper-id>19541724</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2183634</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>8.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>8.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008852944</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B2221C43F0CAD8F41</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>8.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>4</expiration-month>
<expiration-year>2020</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3953137</order-id>
<ordering-shopper>
<shopper-id>19505364</shopper-id>
<seller-shopper-id>456789123</seller-shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2181034</sku-id>
<sku-name>Subscription Test</sku-name>
</sku>
<quantity>1</quantity>
<url>https://sandbox.bluesnap.com/services/2/subscriptions/39497226</url>
<item-sub-total>5.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>5.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38461986</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=141E0FACB7903570</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>22-Jan-18</date-due>
<date-created>22-Jan-18</date-created>
<amount>5.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>9</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
<paypal-transaction-data />
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2181034</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys />
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950669</order-id>
<ordering-shopper>
<shopper-id>19575992</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855984</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B2221C43F0CAD8F24</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC<card-category>
<expiration-month>4</expiration-month>
<expiration-year>2020</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
<trial-days>14</trial-days>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950675</order-id>
<ordering-shopper>
<shopper-id>19575992</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>20.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>20.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855990</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61BF00AB3817605AB85</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>20.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>4</expiration-month>
<expiration-year>2020</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>4087001</order-id>
<ordering-shopper>
<shopper-id>19468518</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2117308</sku-id>
<sku-name>Product A Regular SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>10.22</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>10.22</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1005888175</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=7BD340777D655CBDCE1598C32103B290</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>07-Oct-18</date-due>
<date-created>07-Oct-1</date-created>
<amount>10.22</amount>
<currency>USD</currency>
<soft-descriptor>BLS*DescTest</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>MASTERCARD</card-type>
<card-sub-type>DEBIT</card-sub-type>
<expiration-month>12</expiration-month>
<expiration-year>2018</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<vat-code>AT-U49361408</vat-code>
<title>Mr</title>
<first-name>Shopper first name</first-name>
<last-name>Shopper last name</last-name>
<email>[email protected]</email>
<company-name>JS Company</company-name>
<address1>123 Oxford</address1>
<city>City</city>
<state>NY</state>
<zip>54321</zip>
<country>US</country>
<phone>1800808080</phone>
<fax>1800808080</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2117308</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
<download-links>
<sku-download-link>
<sku-id>2117308</sku-id>
<sku-name>Product A Regular SKU</sku-name>
<download-link>https://sandbox.bluesnap.com/jsp/dlapp.jsp?ref=1005888175C2117308C9510541</download-link>
</sku-download-link>
</download-links>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3941191</order-id>
<ordering-shopper>
<shopper-id>19505364</shopper-id>
<seller-shopper-id>456789123</seller-shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2178314</sku-id>
<sku-name>overriding SKU name</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>100.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>100.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38442078</invoice-id>
<url>http://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=A58B344395C99920</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>10-Nov-18</date-due>
<date-created>10-Nov-18</date-created>
<amount>100.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*DescTest</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>9</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
<paypal-transaction-data />
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2178314</sku-id>
<sku-name>overriding SKU name</sku-name>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys />
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950677</order-id>
<ordering-shopper>
<shopper-id>19575992</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<sku-parameter>
<param-name>example_custom_param1</param-name>
<param-value>1111</param-value>
</sku-parameter>
<sku-parameter>
<param-name>example_custom_param2</param-name>
<param-value>2222</param-value>
</sku-parameter>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855992</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B31D9F1F5F6FDD713</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>4</expiration-month>
<expiration-year>2020</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>756543</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950679</order-id>
<ordering-shopper>
<shopper-id>19575992</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<coupons>
<coupon>50percent</coupon>
<coupons-total>7.50</coupons-total>
</coupons>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>7.50</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855994</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B4B7475B496A3036B</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>7.50</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>4</expiration-month>
<expiration-year>2020</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3941161</order-id>
<ordering-shopper>
<shopper-id>19481324</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>EUR</charged-currency>
<cart-item>
<sku>
<sku-id>2180514</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>55.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>55.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38442058</invoice-id>
<url>http://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=1F1B22FF6BE6C35E</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>10-Nov-18</date-due>
<date-created>10-Nov-18</date-created>
<amount>55.00</amount>
<currency>EUR</currency>
<soft-descriptor>BLS*BLUESNAP</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>9</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
<paypal-transaction-data />
<invoice-contact-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<address1>1 Main Street</address1>
<city>Hometown</city>
<state>NY</state>
<zip>21341</zip>
<country>US</country>
<phone>14135556789</phone>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2180514</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys />
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950671</order-id>
<ordering-shopper>
<shopper-id>19547628</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>29.99</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>29.99</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855986</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B4A86A4EAD61A83C9</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>DEBIT</card-sub-type>
<expiration-month>9</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2185870</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3974815</order-id>
<ordering-shopper>
<shopper-id>19557376</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>EUR</charged-currency>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
<sku-name>NewSubscriptions Standard Plan</sku-name>
</sku>
<quantity>1</quantity>
<url>https://sandbox.bluesnap.com/services/2/subscriptions/39516466</url>
<item-sub-total>29.69</item-sub-total>
</cart-item>
<tax>5.82</tax>
<tax-rate>19.6</tax-rate>
<total-cart-cost>35.51</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38490386</invoice-id>
<url>http://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=AB5D0A60BE05C421</url>
<financial-transactions>
<financial-transaction>
<status>Pending</status>
<date-due>26-Jun-17</date-due>
<date-created>26-Jun-17</date-created>
<amount>35.51</amount>
<tax>5.82</tax>
<tax-rate>19.6</tax-rate>
<currency>EUR</currency>
<soft-descriptor>BS</soft-descriptor>
<payment-method>SEPA Direct Debit</payment-method>
<target-balance>ACCOUNT</target-balance>
<paypal-transaction-data/>
<sepa-direct-debit>
<iban-first-four>DE09</iban-first-four>
<iban-last-four>7893</iban-last-four>
<mandate-id>BS141852</mandate-id>
<mandate-date>26-Jun-17</mandate-date>
<pre-notification-text>The amount of 35.51 EUR will be collected using SEPA Direct Debit with Mandate BS141852 from your bank account IBAN DE09XXXXXX7893 in the next few days. Please ensure sufficient funds in your account.</pre-notification-text>
<pre-notification-translation-ref>https://sandbox.bluesnap.com/services/2/translations/sepa/prenotification?transactionid=1011296599</pre-notification-translation-ref>
</sepa-direct-debit>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>jdoe@johndoeandsons.com</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>Paris</city>
<zip>75654</zip>
<country>fr</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2185870</sku-id>
<sku-name>NewSubscriptions Standard Plan</sku-name>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3980323</order-id>
<ordering-shopper>
<shopper-id>19557376</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
<sku-name>Subscriptions Standard Plan</sku-name>
</sku>
<quantity>1</quantity>
<url>https://sandbox.bluesnap.com/services/2/subscriptions/39521630</url>
<item-sub-total>29.99</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>29.99</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38495710</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=8438213302D01044</url>
<financial-transactions>
<financial-transaction>
<status>Pending</status>
<date-due>24-Apr-18</date-due>
<date-created>24-Apr-18</date-created>
<amount>29.99</amount>
<currency>USD</currency>
<soft-descriptor>BS</soft-descriptor>
<payment-method>Electronic Check Presentment</payment-method>
<target-balance>ACCOUNT</target-balance>
<paypal-transaction-data/>
<ecp>
<account-type>CONSUMER_CHECKING</account-type>
<public-account-number>99992</public-account-number>
<public-routing-number>75150</public-routing-number>
</ecp>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market st</address1>
<city>San Francisco</city>
<state>FL</state>
<zip>756543</zip>
<country>us</country>
<phone>1413555666</phone>
<fax>1413555666789</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2185870</sku-id>
<sku-name>Subscriptions Standard Plan</sku-name>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3986569</order-id>
<ordering-shopper>
<shopper-id>19569784</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2188774</sku-id>
<sku-name>Assorted Purple Stars</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>10.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>10.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38504838</invoice-id>
<url>http://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=20780CD60465A7EE</url>
<financial-transactions>
<financial-transaction>
<status>Pending</status>
<date-due>30-Nov-18</date-due>
<date-created>30-Nov-18</date-created>
<amount>10.00</amount>
<currency>USD</currency>
<soft-descriptor>HDT LDT</soft-descriptor>
<payment-method>Electronic Check Presentment</payment-method>
<target-balance>MHN_ACCOUNT</target-balance>
<paypal-transaction-data/>
<ecp>
<account-type>CONSUMER_SAVINGS</account-type>
<public-account-number>99993</public-account-number>
<public-routing-number>75151</public-routing-number>
</ecp>
<invoice-contact-info>
<title>Mr</title>
<first-name>ECP Shopper first name</first-name>
<last-name>ECP Shopper last name</last-name>
<email>[email protected]</email>
<company-name>ECP Company</company-name>
<address1>123 Oxford</address1>
<city>London</city>
<state>NY</state>
<zip>54321</zip>
<country>us</country>
<phone>1800808080</phone>
<fax>1800808080</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2188774</sku-id>
<sku-name>Assorted Purple Stars</sku-name>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950671</order-id>
<ordering-shopper>
<shopper-id>19575996</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855986</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8A4EAD61A83C9</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Apple Pay</payment-method>
<target-balance>ACCOUNT</target-balance>
<wallet>
<billing-contact-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<address1>South St</address1>
<city>Waltham</city>
<state>MA</state>
<zip>02453</zip>
</billing-contact-info>
</wallet>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950671</order-id>
<ordering-shopper>
<shopper-id>19575996</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855986</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B4A86A4EAD61A83C9</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>Master Card</card-type>
<card-sub-type>DEBIT</card-sub-type>
<expiration-month>9</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950671</order-id>
<ordering-shopper>
<shopper-id>19575996</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855986</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B4A86A4EAD61A83C9</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<wallet>
<wallet-type>GOOGLE_PAY</wallet-type>
<billing-contact-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<address1>138 Market st</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>us</country>
</billing-contact-info>
<tokenized-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>CREDIT</card-sub-type>
<dpan-expiration-month>9</dpan-expiration-month>
<dpan-expiration-year>2025</dpan-expiration-year>
<dpan-last-four-digits>2222</dpan-last-four-digits>
</tokenized-card>
</wallet>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>US</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3990715</order-id>
<ordering-shopper>
<shopper-id>19574318</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
<sku-name>NewSubscriptions Standard Plan</sku-name>
</sku>
<quantity>1</quantity>
<url>https://sandbox.bluesnap.com/services/2/subscriptions/39531394</url>
<item-sub-total>29.99</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>29.99</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38510512</invoice-id>
<url>http://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=8E66495425EEADF4</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>18-Jul-19</date-due>
<date-created>18-Jul-19</date-created>
<amount>29.99</amount>
<currency>USD</currency>
<soft-descriptor>BLS*BS</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<bin-category>CONSUMER</bin-category>
<issuing-bank>JPMORGAN CHASE BANK, N.A.</issuing-bank>
<expiration-month>9</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>us</issuing-country-code>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>jdoe@johndoeandsons.com</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>us</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2185870</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
<network-transaction-info>
<network-transaction-id>759199565060706</network-transaction-id>
</network-transaction-info>
<transaction-order-source>MOTO</transaction-order-source>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3991039</order-id>
<ordering-shopper>
<shopper-id>19574268</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2185870</sku-id>
<sku-name>Standard Plan</sku-name>
</sku>
<quantity>1</quantity>
<url>https://sandbox.bluesnap.com/services/2/subscriptions/39531716</url>
<item-sub-total>29.99</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>29.99</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38510926</invoice-id>
<url>http://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=575E729C71269E7F</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>24-Jul-19</date-due>
<date-created>24-Jul-19</date-created>
<amount>29.99</amount>
<currency>USD</currency>
<soft-descriptor>BLS*BS</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<bin-category>CONSUMER</bin-category>
<issuing-bank>JPMORGAN CHASE BANK, N.A.</issuing-bank>
<expiration-month>9</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>us</issuing-country-code>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>jdoe@johndoeandsons.com</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>us</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2185870</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
<three-d-secure>
<authentication-result>AUTHENTICATION_SUCCEEDED</authentication-result>
</three-d-secure>
<network-transaction-info>
<network-transaction-id>759205679902426</network-transaction-id>
</network-transaction-info>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<order xmlns="http://ws.plimus.com">
<order-id>3991067</order-id>
<ordering-shopper>
<shopper-id>19574354</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2186284</sku-id>
<sku-name>Regular Contracts</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>28.57</item-sub-total>
</cart-item>
<tax>5.60</tax>
<tax-rate>19.6</tax-rate>
<total-cart-cost>34.17</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>38510964</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=63E1BABC2FB8506E</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>24-Jul-19</date-due>
<date-created>24-Jul-19</date-created>
<amount>34.17</amount>
<tax>5.60</tax>
<tax-rate>19.6</tax-rate>
<currency>USD</currency>
<soft-descriptor>BLS*BS</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1091</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<bin-category>CONSUMER</bin-category>
<expiration-month>1</expiration-month>
<expiration-year>2022</expiration-year>
<issuing-country-code>us</issuing-country-code>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>jdoe@johndoeandsons.com</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market st</address1>
<city>San Francisco</city>
<zip>756543</zip>
<country>fr</country>
<phone>1413555666</phone>
<fax>1413555666789</fax>
</invoice-contact-info>
<skus>
<sku>
<sku-id>2186284</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
<download-links>
<sku-download-link>
<sku-id>2186284</sku-id>
<sku-name>Regular Contracts</sku-name>
<download-link>https://sandbox.bluesnap.com/jsp/dlapp.jsp?ref=38510964C2186284C6795222</download-link>
</sku-download-link>
</download-links>
</fulfillment>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
<network-transaction-info>
<original-network-transaction-id>019071907460745</original-network-transaction-id>
<network-transaction-id>019072415551766</network-transaction-id>
</network-transaction-info>
</order>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<order xmlns="http://ws.plimus.com">
<order-id>3950669</order-id>
<ordering-shopper>
<shopper-id>19575992</shopper-id>
</ordering-shopper>
<cart>
<charged-currency>USD</charged-currency>
<cart-item>
<sku>
<sku-id>2152762</sku-id>
<sku-name>Example Product Example SKU</sku-name>
</sku>
<quantity>1</quantity>
<item-sub-total>15.00</item-sub-total>
</cart-item>
<tax>0.00</tax>
<tax-rate>0</tax-rate>
<total-cart-cost>15.00</total-cart-cost>
</cart>
<post-sale-info>
<invoices>
<invoice>
<invoice-id>1008855984</invoice-id>
<url>https://sandbox.bluesnap.com/jsp/show_invoice.jsp?ref=04CF374B8770B61B2221C43F0CAD8F24</url>
<financial-transactions>
<financial-transaction>
<status>Approved</status>
<date-due>20-Oct-18</date-due>
<date-created>20-Oct-18</date-created>
<amount>15.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*Example</soft-descriptor>
<payment-method>Credit Card</payment-method>
<target-balance>ACCOUNT</target-balance>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>Visa</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>4</expiration-month>
<expiration-year>2020</expiration-year>
</credit-card>
<paypal-transaction-data/>
<invoice-contact-info>
<title>Mr.</title>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>[email protected]</email>
<company-name>JohnDoeAndSons</company-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>us</country>
<phone>14135556789</phone>
<fax>14135556788</fax>
</invoice-contact-info>
<authorization-code>654321</authorization-code>
<skus>
<sku>
<sku-id>2152762</sku-id>
</sku>
</skus>
</financial-transaction>
</financial-transactions>
</invoice>
</invoices>
</post-sale-info>
<fulfillment>
<license-keys/>
</fulfillment>
</order>