Shipment Notification File
Introduction
This page describes the properties and format of shipment notification file sent by Blackhawk Network to distribution partner via secure FTP Server.
File Naming Convention
<partner name>_<dropshipmentnotification_GUID.xml.zip
Example: giftcardmall_dropshipmentnotification_OF3A1529-1C10-4066-8BCD-B89C2D546753.xml.zip
Compression of file is specified at DP Source level to support large order profiles.
File Frequency
Daily files will be produced and transferred on pre-determined schedule.
XSD
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="dropshipordershipmentnotification">
<xs:complexType>
<xs:sequence>
<xs:element ref="shippeditems"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="shippeditems">
<xs:complexType>
<xs:sequence>
<xs:element ref="shipmentnotificationtime"/>
<xs:element ref="partneridentifier"/>
<xs:element ref="version" />
<xs:element ref="shippeditem" minOccurs='0' maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="shippeditem">
<xs:complexType>
<xs:all>
<xs:element ref="externaldropshipid" minOccurs='0'/>
<xs:element ref="partnerorderlineitemidentifier" minOccurs='0'/>
<xs:element ref="partnerordernumber" />
<xs:element ref="bhnordernumber"/>
<xs:element ref="bhnorderlineitemidentifier"/>
<xs:element ref="productidentifier" minOccurs='0' />
<xs:element ref="carrieridentifier" minOccurs='0'/>
<xs:element ref="denomination"/>
<xs:element ref="shippingaddress" minOccurs='0'/>
<xs:element ref="shippingmethod"/>
<xs:element ref="shippingcost" minOccurs='0'/>
<xs:element ref="tax" minOccurs='0'/>
<xs:element ref="trackingnumber" minOccurs='0'/>
<xs:element ref="egifturls" minOccurs='0'/>
<xs:element ref="shippingemailaddress" minOccurs='0' />
<xs:element ref="shippeddate" />
<xs:element ref="partnersku" minOccurs='0'/>
<xs:element ref="productupc" minOccurs='0' />
<xs:element ref="quantity"/>
<xs:element ref="shipmentreferencenumber"/>
</xs:all>
</xs:complexType>
</xs:element>
<xs:element name="version">
<xs:annotation>
<xs:documentation>Mandatory</xs:documentation>
<xs:documentation>Version of the spec </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="3.0"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="partneridentifier" >
<xs:annotation>
<xs:documentation>Mandatory</xs:documentation>
<xs:documentation>BHN will issue an identifier to identify the Distribution Partner </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:minLength value="1"/>
<xs:maxLength value="50"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="partnerorderlineitemidentifier">
<xs:annotation>
<xs:documentation>(Optional) This is the Partner reference for the order line item</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="partnerordernumber">
<xs:annotation>
<xs:documentation>Mandatory</xs:documentation>
<xs:documentation> The Partner reference to the order request.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:minLength value="1"/>
<xs:maxLength value="30"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="bhnordernumber">
<xs:annotation>
<xs:documentation>(Mandatory) BHN generated Order Number.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string" />
</xs:simpleType>
</xs:element>
<xs:element name="bhnorderlineitemidentifier" >
<xs:annotation>
<xs:documentation>(Mandatory) BHN generated Order line item Number.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string" >
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="productidentifier">
<xs:annotation>
<xs:documentation>(Optional) This is the identifier of the gift/reward card product</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="carrieridentifier">
<xs:annotation>
<xs:documentation>
(Optional)
This is the identifier
of the carrier for Card On Carrier
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="denomination">
<xs:annotation>
<xs:documentation>
Mandatory
This is the load value on card.
Note: Card will remain in-active until activation.
BHN will provide valid range for each product as part of product catalog.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:whiteSpace value="collapse"/>
<xs:minLength value="1"/>
<xs:pattern value="([0-9 .]+)?"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="shippingaddress">
<xs:annotation>
<xs:documentation>
Address where cards are shipped to.
Optional for eGift.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice minOccurs='0' maxOccurs="unbounded">
<xs:element name="attnto" type="shippingattnto"/>
<xs:element name="firstname" type="shippingfirstname"/>
<xs:element name="lastname" type="shippinglastname"/>
<xs:element name="company" type="shippingcompany" minOccurs='0'/>
<xs:element name="addressone" type="shippingaddressone"/>
<xs:element name="addresstwo" type="shippingaddresstwo" minOccurs='0'/>
<xs:element name="addressthree" type="shippingaddressthree" minOccurs='0'/>
<xs:element name="districtorcounty" type="shippingdistrictorcounty" minOccurs='0'/>
<xs:element name="city" type="shippingcity"/>
<xs:element name="state" type="shippingstate"/>
<xs:element name="zipcode" type="shippingzipcode"/>
<xs:element name="country" type="shippingcountry"/>
<xs:element ref="phone" minOccurs='0'/>
<xs:element name="shippingpoboxflag" type="poboxflag" minOccurs='0'/>
<xs:element ref="shippingrecipientid" minOccurs='0'/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:simpleType name="shippingattnto">
<xs:restriction base="xs:string">
<xs:annotation>
<xs:documentation>
Optional : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Shipping Attention To.</xs:documentation>
</xs:annotation>
<xs:whiteSpace value="collapse"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="shippingrecipientid">
<xs:simpleType>
<xs:restriction base="recipientid">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Recipent Id for shipping for european region. </xs:documentation>
</xs:annotation>
<xs:whiteSpace value="collapse"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:simpleType name="recipientid">
<xs:restriction base="xs:string">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Recipent Id for european region.</xs:documentation>
</xs:annotation>
<xs:whiteSpace value="collapse"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingfirstname">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Mandatory</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:maxLength value="30"/>
<xs:whiteSpace value="collapse"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippinglastname">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Mandatory</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:maxLength value="30"/>
<xs:whiteSpace value="collapse"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingcompany">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Optional</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingaddressone">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Mandatory</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:maxLength value="60"/>
<xs:whiteSpace value="collapse"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingdistrictorcounty">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Optional</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:maxLength value="150"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingaddresstwo">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Optional</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:maxLength value="60"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingaddressthree">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Optional</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:maxLength value="60"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingcity">
<xs:annotation>
<xs:documentation>Mandatory</xs:documentation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:maxLength value="150"/>
<xs:whiteSpace value="collapse"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingstate">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Mandatory</xs:documentation>
<xs:documentation>Allowed states for usa APO|FPO|AL|AK|AZ|AR|CA|CO|CT|DC|DE|FL|GA|HI|ID|IL|IN|IA|KS|KY|LA|ME|MD|MA|MI||MN|MS|MO|MT|NE|NV|NH|NJ|NM|NY|NC|ND|OH|OK|OR|PA|RI|SC|SD|TN|TX|UT|VA|VT|WA|WV|WI|WY</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="150"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingzipcode">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Mandatory</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="shippingcountry">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>For United States pass "USA"</xs:documentation>
<xs:documentation>3166-1 alpha-3</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="phone">
<xs:simpleType>
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>Optional</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="30">
<xs:annotation>
<xs:documentation>Format: Allows following characters + () - , . x
Mandatory, If the partner is configured to use last four
digits of the phone number for activation
</xs:documentation>
</xs:annotation>
</xs:maxLength>
<xs:whiteSpace value="collapse" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:simpleType name="poboxflag">
<xs:annotation>
<xs:documentation>
MANDATORY : Include the content in CDATA section.
</xs:documentation>
<xs:documentation>PO Box flag</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:boolean">
</xs:restriction>
</xs:simpleType>
<xs:element name="shippingmethod">
<xs:simpleType>
<xs:annotation>
<xs:documentation>Mandatory, current allowed values are </xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="20"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="shippingcost">
<xs:annotation>
<xs:documentation>Optional</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base='xs:string'>
<xs:pattern value="([0-9 .]+)?"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="tax">
<xs:annotation>
<xs:documentation>Optional</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base='xs:string'>
<xs:pattern value="([0-9 .]+)?"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="trackingnumber">
<xs:annotation>
<xs:documentation>Optional</xs:documentation>
<xs:documentation>Based on the shipping method Tracking Number may be provided.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="egifturls">
<xs:annotation>
<xs:documentation>Optional</xs:documentation>
<xs:documentation>Egift urls for Egifts </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="egifturl" minOccurs='1' maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="egifturl">
<xs:annotation>
<xs:documentation>Optional</xs:documentation>
<xs:documentation>Egift url for Egift </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:anyURI">
<xs:maxLength value="500"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="shippingemailaddress">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:annotation>
<xs:documentation>MANDATORY for EGift if BHN is sending the egift to customer. </xs:documentation>
<xs:documentation>
Format [email protected]
</xs:documentation>
</xs:annotation>
<xs:whiteSpace value="collapse"/>
<xs:pattern value="[^@][email protected][^\.]+\..+"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="shippeddate">
<xs:annotation>
<xs:documentation> (Mandatory) Shipped Date </xs:documentation>
<xs:documentation>format (YYYY-MM-DDThh:mm:ssTZD) </xs:documentation>
<xs:documentation>ISO 8601 format </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:dateTime">
<xs:pattern value="\d{4}-\d\d-\d\dT\d\d:\d\d:\d\dZ" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="partnersku" >
<xs:annotation>
<xs:documentation>Optional</xs:documentation>
<xs:documentation>Partner SKU </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="productupc">
<xs:annotation>
<xs:documentation>Optional</xs:documentation>
<xs:documentation>Product UPC </xs:documentation>
<xs:documentation>BHN assigned product upc</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="quantity">
<xs:annotation>
<xs:documentation>Mandatory</xs:documentation>
<xs:documentation>Quantity of card requested</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="shipmentreferencenumber" >
<xs:annotation>
<xs:documentation>Mandatory</xs:documentation>
<xs:documentation>Combination of partnerordernumber and shipmentnotificationtime (partnerordernumber+shipmentnotificationtime)</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="shipmentnotificationtime">
<xs:annotation>
<xs:documentation> (Optional) Shipment notification run time </xs:documentation>
<xs:documentation>format (YYYY-MM-DDThh:mm:ssTZD) </xs:documentation>
<xs:documentation>ISO 8601 format </xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:dateTime">
<xs:pattern value="\d{4}-\d\d-\d\dT\d\d:\d\d:\d\dZ" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="externaldropshipid">
<xs:annotation>
<xs:documentation>Optional</xs:documentation>
<xs:documentation> External Dropship order Id.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:schema>
Sample File
<?xml version="1.0" encoding="UTF-8"?>
<dropshipordershipmentnotification>
<shippeditems>
<shipmentnotificationtime>2016-04-01T19:14:52Z</shipmentnotificationtime>
<partneridentifier>ORDERCENTRAL10</partneridentifier>
<version>3.0</version>
<shippeditem>
<externaldropshipid>XM5WV0</externaldropshipid>
<partnerorderlineitemidentifier>100001</partnerorderlineitemidentifier>
<partnerordernumber>XM5WV0</partnerordernumber>
<partnersku>12345</partnersku>
<shipmentreferencenumber>71RLNLBSRFFF0ZTPT9CD240KM4</shipmentreferencenumber>
<bhnordernumber>2077702</bhnordernumber>
<bhnorderlineitemidentifier>073QBYPX57VHDYLTHY21GKA7TR</bhnorderlineitemidentifier>
<trackingnumber>Test53381</trackingnumber>
<shippeddate>2016-03-30T18:05:16Z</shippeddate>
<productidentifier>36988</productidentifier>
<carrieridentifier>74873</carrieridentifier>
<denomination>50.0</denomination>
<shippingmethod>upsground</shippingmethod>
<shippingcost>2.0</shippingcost>
<quantity>1</quantity>
<shippingemailaddress>[email protected]</shippingemailaddress>
<shippingaddress>
<attnto><![CDATA[ Pleasanton ]]></attnto>
<firstname><![CDATA[ Jon & Jack ]]></firstname>
<lastname><![CDATA[ Doe ]]></lastname>
<company><![CDATA[ BHN ]]></company>
<addressone><![CDATA[ 6220 Stoneridge Mall Rd ]]></addressone>
<addresstwo><![CDATA[ 4th floor ]]></addresstwo>
<addressthree><![CDATA[ xxx ]]></addressthree>
<city><![CDATA[ Pleasanton ]]></city>
<districtorcounty><![CDATA[ Alameda ]]></districtorcounty>
<state>CA</state>
<zipcode>94588</zipcode>
<country>USA</country>
<phone>+9255673453</phone>
<shippingpoboxflag>true</shippingpoboxflag>
<shippingrecipientid>shippingrecipientid</shippingrecipientid>
</shippingaddress>
</shippeditem>
<shippeditem>
<externaldropshipid>XITSA3</externaldropshipid>
<partnerorderlineitemidentifier>100001</partnerorderlineitemidentifier>
<partnerordernumber>XITSA3</partnerordernumber>
<partnersku>12345</partnersku>
<shipmentreferencenumber>MXBMJQKW36W8VKQ388C619Z5K4</shipmentreferencenumber>
<bhnordernumber>2077635</bhnordernumber>
<bhnorderlineitemidentifier>9XAKJF27MSWHYG4X5RVTALN0GR</bhnorderlineitemidentifier>
<trackingnumber>Test53381</trackingnumber>
<shippeddate>2016-03-30T00:10:26Z</shippeddate>
<productupc>36988</productupc>
<carrieridentifier>74873</carrieridentifier>
<denomination>50.0</denomination>
<shippingmethod>upsground</shippingmethod>
<shippingcost>2.0</shippingcost>
<quantity>1</quantity>
<shippingemailaddress>[email protected]</shippingemailaddress>
<shippingaddress>
<attnto><![CDATA[ Pleasanton ]]></attnto>
<firstname><![CDATA[ Jon & Jack ]]></firstname>
<lastname><![CDATA[ Doe ]]></lastname>
<company><![CDATA[ BHN ]]></company>
<addressone><![CDATA[ 6220 Stoneridge Mall Rd ]]></addressone>
<addresstwo><![CDATA[ 4th floor ]]></addresstwo>
<addressthree><![CDATA[ XXXXX ]]></addressthree>
<city><![CDATA[ Pleasanton ]]></city>
<districtorcounty><![CDATA[ Alameda ]]></districtorcounty>
<state>CA</state>
<zipcode>94588</zipcode>
<country>USA</country>
<phone>+9255673453</phone>
<shippingpoboxflag>true</shippingpoboxflag>
<shippingrecipientid>shippingrecipientid</shippingrecipientid>
</shippingaddress>
</shippeditem>
</shippeditems>
</dropshipordershipmentnotification>
<?xml version="1.0" encoding="UTF-8"?>
<orders externaldropshipid="XDCRS2" partnerdropshiporderversionnumber="V3.0" partneridentifier="ORDERCENTRAL10">
<order>
<version>3.0</version>
<partnerorderdate>2016-04-25T17:59:04Z</partnerorderdate>
<partnerorderversion>V1.0</partnerorderversion>
<partnerordernumber>510017</partnerordernumber>
<partnerponumber>testPO1234</partnerponumber>
<partnercustomeridentifier>ORDERCENTRAL10</partnercustomeridentifier>
<totalcards>1</totalcards>
<totalloadvalue>25</totalloadvalue>
<activationphase>ON_DATE</activationphase>
<activationdate>2016-04-25T17:59:04Z</activationdate>
<packagingtype>MULTI_CARD_ON_CARRIER</packagingtype>
<billinginfo>
<billingaddress>
<attnto><![CDATA[Poorvi]]></attnto>
<firstname><![CDATA[ Blackhawk & Network ]]></firstname>
<lastname><![CDATA[ Networkk ]]></lastname>
<company><![CDATA[ BHN ]]></company>
<addressone><![CDATA[ 6220; Stoneridge Mall Rd ]]></addressone>
<addresstwo><![CDATA[ 4th floor ]]></addresstwo>
<addressthree><![CDATA[Order Cetral Team]]></addressthree>
<city><![CDATA[ Pleasanton ]]></city>
<districtorcounty><![CDATA[ Alameda ]]></districtorcounty>
<state><![CDATA[ CA ]]></state>
<zipcode><![CDATA[94588]]></zipcode>
<country><![CDATA[USA]]></country>
</billingaddress>
<billingemailaddress><![CDATA[[email protected]]]></billingemailaddress>
<billingsenderid><![CDATA[billingsenderid]]></billingsenderid>
<billingpoboxflag><![CDATA[true]]></billingpoboxflag>
</billinginfo>
<orderlineitems>
<orderlineitem>
<partnerorderlineitemidentifier>100001</partnerorderlineitemidentifier>
<productidentifier>60390</productidentifier>
<partnersku><![CDATA[60390]]></partnersku>
<denomination>25</denomination>
<quantity>1</quantity>
<cardimageurlfront>cardimageurlfront</cardimageurlfront>
<activationmemo><![CDATA[ActivationMemo]]></activationmemo>
<offervalue>25</offervalue>
<fulfillmentinstructions><![CDATA[test]]></fulfillmentinstructions>
<expeditefulfillment>true</expeditefulfillment>
<imageurls>
<imageurl name="cardfront">https://ImageUrls.com/cardimageurlfront</imageurl>
<imageurl name="cardback">https://ImageUrls.com/cardback1</imageurl>
<imageurl name="carrier_p001">https://ImageUrls.com/carrier_p001</imageurl>
</imageurls>
<additionalinfos>
<additionalinfo name="additionalinfo1">additionalinfo1</additionalinfo>
<additionalinfo name="additionalinfo2">additionalinfo2</additionalinfo>
<additionalinfo name="additionalinfo3">additionalinfo3</additionalinfo>
</additionalinfos>
<cardpersonalization>
<nameoncard>Rajeetha Nair</nameoncard>
<messageoncard>Hi there</messageoncard>
<line5>Line5</line5>
<line6>Line5</line6>
</cardpersonalization>
<carrierpersonalization>
<fromname><![CDATA[ me ]]></fromname>
<toname><![CDATA[ me]]></toname>
<messageoncarrier><![CDATA[ this is message on carrier]]></messageoncarrier>
<customcarriermessage01><![CDATA[this is a customized message 01]]></customcarriermessage01>
<customcarriermessage02><![CDATA[this is a customized message 02]]></customcarriermessage02>
</carrierpersonalization>
<shippinginfo>
<shippingrecipientid><![CDATA[shippingrecipientid]]></shippingrecipientid>
<shippingemailaddress><![CDATA[[email protected]]]></shippingemailaddress>
<shippingaddress>
<attnto><![CDATA[Poorvi]]></attnto>
<firstname><![CDATA[ Jon & ! Jack ]]></firstname>
<lastname><![CDATA[ Doe ]]></lastname>
<company><![CDATA[ BHN ]]></company>
<addressone><![CDATA[ 6220 Stoneridge Mall Rd ]]></addressone>
<addresstwo><![CDATA[ 4th floor ]]></addresstwo>
<addressthree><![CDATA[Order Cetral Team]]></addressthree>
<city><![CDATA[ Pleasanton ]]></city>
<districtorcounty><![CDATA[ AlamedaAlamedaAlamedaAlameda ]]></districtorcounty>
<state><![CDATA[ CA ]]></state>
<zipcode><![CDATA[94588]]></zipcode>
<country><![CDATA[USA]]></country>
<phone><![CDATA[+19255673453]]></phone>
</shippingaddress>
<shippingpoboxflag><![CDATA[true]]></shippingpoboxflag>
<courier>AUSDHL</courier>
<shippingaccountnumber>ShippingAcctNo012345</shippingaccountnumber>
</shippinginfo>
<shippingmethod>upsnextday</shippingmethod>
<registerinfo>
<registeraddress>
<firstname><![CDATA[Jon]]></firstname>
<lastname><![CDATA[Doe]]></lastname>
<attnto><![CDATA[Poorvi]]></attnto>
<company><![CDATA[BHN]]></company>
<addressone><![CDATA[6220 Stoneridge Mall Rd]]></addressone>
<addresstwo><![CDATA[4th floor]]></addresstwo>
<addressthree><![CDATA[Order Cetral Team]]></addressthree>
<city><![CDATA[Pleasanton]]></city>
<districtorcounty><![CDATA[districtorcounty]]></districtorcounty>
<state><![CDATA[CA]]></state>
<zipcode><![CDATA[94588]]></zipcode>
<country><![CDATA[USA]]></country>
<phone><![CDATA[+19255673453]]></phone>
</registeraddress>
<registeremailaddress><![CDATA[[email protected]]]></registeremailaddress>
<registerrecipientid><![CDATA[alpha0123456789]]></registerrecipientid>
<registerpoboxflag><![CDATA[false]]></registerpoboxflag>
</registerinfo>
<clientprogramid>clientProgramId0099</clientprogramid>
<bomid>bomId0099</bomid>
<returninfo>
<returnaddress>
<firstname><![CDATA[Dhaval]]></firstname>
<lastname><![CDATA[Tamboli]]></lastname>
<attnto><![CDATA[Suresh]]></attnto>
<company><![CDATA[BHN]]></company>
<addressone><![CDATA[1136 Oak Valley Drive]]></addressone>
<addresstwo><![CDATA[4th floor]]></addresstwo>
<addressthree><![CDATA[Order Cetral Team]]></addressthree>
<city><![CDATA[Ann Arbor]]></city>
<districtorcounty><![CDATA[districtorcounty]]></districtorcounty>
<state><![CDATA[MI]]></state>
<zipcode><![CDATA[48108]]></zipcode>
<country><![CDATA[USA]]></country>
<phone><![CDATA[+19255673453]]></phone>
</returnaddress>
<returnemailaddress><![CDATA[[email protected]]]></returnemailaddress>
<returnsenderid><![CDATA[alpha0123456789]]></returnsenderid>
<returnpoboxflag><![CDATA[false]]></returnpoboxflag>
</returninfo>
</orderlineitem>
</orderlineitems>
<otherinfo>
<otherinfo01><![CDATA[Sample other information line 1]]></otherinfo01>
<otherinfo02><![CDATA[Sample other information line 2]]></otherinfo02>
</otherinfo>
</order>
</orders>
Updated 4 months ago