The Update Order operation submits a modified customer order after the order is submitted but before it is released for fulfillment. Before using the Update Order operation, the order must be placed on hold using the Hold Order operation. (Refer to Hold Order.)

URI Summary

Operation

Action

URI Template

URI Example

Transaction Type

Unique RequestID Needed for Duplicate Detection?

Non-URI Request Payload

Update order

POST

/vM.m/stores/STOREID/orders/update.format

/v1.0/stores/ABCD/orders/update.xml

Submit a modified order to replace a previous order that was placed on hold.

No

Order-Service-Update-Request-1.0.xsd

URI domain name: Radial recommends using the new domain at apg.radial.com. To connect to production Radial APIs, use the following form of the URL:

https://apg.radial.com/v1.0/proxyname/storecode/function

You should have received the applicable information for proxyname, storecode, and function from your Radial representative.

Note: The old domain will still be in operation until further notice from Radial. For more information on Radial API URIs, see API Requests and Responses.

Schemas

Data Elements and Values

The Order Update Request should include the complete set of information for the order. Specific data values depend on what is being updated.

Resolve Order Hold

To resolve a hold placed on the order, use the holdResolveOnModify flag, which is a parameter of the OrderUpdateRequest element.

  • To resolve the order modification hold while processing the Order Update Request, specify holdResolveOnModify="true".
  • To keep the order on hold, specify holdResolveOnModify="false". You can then call the Hold Order operation separately to release the hold.

Add Item

To add a line item to the order, include an OrderItem element with information for the new line and the following parameter values:

  • webLineId must be given a new, unique value. Example: webLineID="3"
  • action="CREATE"

Modify Item

To modify a line item in the order, include an OrderItem element with the updated information for the line and the following parameter values:

  • The webLineId value must match the value in the original order.
  • The webSubLineId value must match the value in the original order.
  • action="MODIFY"

Remove Item

To remove an item from the order, include an OrderItem element with the following parameter values:

  • The webLineId value must match the value in the original order.
  • The webSubLineId value must match the value in the original order.
  • action="CANCEL"

Unchanged Items

Order items that are not changed from the original order must also be included in the Order Update Request. Include the OrderItem element and all of its data, unchanged from the original order. No action value is needed for unchanged items.

Example

Request XML

Copy this code sample.

<OrderUpdateRequest xmlns="http://api.gsicommerce.com/schema/checkout/1.0" 
orderType="SALES" holdResolveOnModify="true" requestId="f1421518-326c-47f2-8f72-d45a3574844a">
   <Order customerOrderId="00025591527970563">
      <Customer customerId="000041622110178">
         <Name>
            <Honorific>Mr.</Honorific>
            <LastName>Billing</LastName>
            <MiddleName/>
            <FirstName>John</FirstName>
         </Name>
         <EmailAddress>RIT_APGTestAuto@dashboard.gsi</EmailAddress>
         <CustomerTaxId>12345</CustomerTaxId>
         <TaxExemptFlag>true</TaxExemptFlag>
      </Customer>
      <CreateTime>2015-03-30T15:13:00</CreateTime>
      <OrderItems>
         <OrderItem id="item_1" webLineId="1" webSubLineId="1">
            <ItemId>21-10180564</ItemId>
            <Quantity>1</Quantity>
            <Description>
               <Description>Black Tennis Shoes</Description>
               <Color id="700">Brown</Color>
               <Size id="6-M">6-M</Size>
            </Description>
            <Pricing>
               <Merchandise>
                  <Amount>114.00</Amount>
                  <TaxData>
                     <TaxClass>76800</TaxClass>
                     <Taxes>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2398" jurisdictionLevel="STATE">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.065</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>7.41</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2399" jurisdictionLevel="COUNTY">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.01</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>1.14</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78112" jurisdictionLevel="DISTRICT">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78858" jurisdictionLevel="DISTRICT">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="92532" jurisdictionLevel="DISTRICT">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0025</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.29</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2400" jurisdictionLevel="DISTRICT">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                     </Taxes>
                  </TaxData>
                  <UnitPrice>114.00</UnitPrice>
               </Merchandise>
               <Shipping>
                  <Amount>5.00</Amount>
                  <TaxData>
                     <TaxClass>93000</TaxClass>
                     <Taxes>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2398" jurisdictionLevel="STATE">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2399" jurisdictionLevel="COUNTY">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78112" jurisdictionLevel="DISTRICT">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78858" jurisdictionLevel="DISTRICT">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="92532" jurisdictionLevel="DISTRICT">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2400" jurisdictionLevel="DISTRICT">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                     </Taxes>
                  </TaxData>
               </Shipping>
            </Pricing>
            <ShippingMethod>ANY_2DAY</ShippingMethod>
            <EstimatedDeliveryDate>
               <Mode>CALIBRATION</Mode>
               <MessageType>DeliveryDate</MessageType>
               <Template>custom template</Template>
            </EstimatedDeliveryDate>
            <VendorId>Vendor1</VendorId>
            <VendorName>Broad Street's vendor</VendorName>
            <SerialNumber>123</SerialNumber>
            <CustomAttributes>
               <Attribute>
                  <Key>PVAR_CODE_COLOR</Key>
                  <Value>700</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_DESC_COLOR</Key>
                  <Value>Brown</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_LABEL_COLOR</Key>
                  <Value>color</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_CODE_SIZE</Key>
                  <Value>6-M</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_DESC_SIZE</Key>
                  <Value>6-M</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_LABEL_SIZE</Key>
                  <Value>Size</Value>
               </Attribute>
            </CustomAttributes>
            <ReservationId>00025591527970563</ReservationId>
         </OrderItem>
         <OrderItem id="item_2" webLineId="2" webSubLineId="1" action="MODIFY">
            <ItemId>21-10180565</ItemId>
            <Quantity>1</Quantity>
            <Description>
               <Description>Black Tennis Shoes</Description>
               <Color id="700">Brown</Color>
               <Size id="6-M">6-M</Size>
            </Description>
            <Pricing>
               <Merchandise>
                  <Amount>114.00</Amount>
                  <TaxData>
                     <TaxClass>76800</TaxClass>
                     <Taxes>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2398" jurisdictionLevel="STATE">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.065</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>7.41</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2399" jurisdictionLevel="COUNTY">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.01</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>1.14</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78112" jurisdictionLevel="DISTRICT">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78858" jurisdictionLevel="DISTRICT">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="92532" jurisdictionLevel="DISTRICT">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0025</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.29</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2400" jurisdictionLevel="DISTRICT">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                     </Taxes>
                  </TaxData>
                  <UnitPrice>114.00</UnitPrice>
               </Merchandise>
               <Shipping>
                  <Amount>5.00</Amount>
                  <TaxData>
                     <TaxClass>93000</TaxClass>
                     <Taxes>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2398" jurisdictionLevel="STATE">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2399" jurisdictionLevel="COUNTY">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78112" jurisdictionLevel="DISTRICT">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78858" jurisdictionLevel="DISTRICT">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="92532" jurisdictionLevel="DISTRICT">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2400" jurisdictionLevel="DISTRICT">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                     </Taxes>
                  </TaxData>
               </Shipping>
            </Pricing>
            <ShippingMethod>ANY_2DAY</ShippingMethod>
            <EstimatedDeliveryDate>
               <Mode>CALIBRATION</Mode>
               <MessageType>DeliveryDate</MessageType>
               <Template>custom template</Template>
            </EstimatedDeliveryDate>
            <VendorId>Vendor1</VendorId>
            <VendorName>Broad Street's vendor</VendorName>
            <SerialNumber>123</SerialNumber>
            <CustomAttributes>
               <Attribute>
                  <Key>PVAR_CODE_COLOR</Key>
                  <Value>700</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_DESC_COLOR</Key>
                  <Value>Brown</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_LABEL_COLOR</Key>
                  <Value>color</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_CODE_SIZE</Key>
                  <Value>6-M</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_DESC_SIZE</Key>
                  <Value>6-M</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_LABEL_SIZE</Key>
                  <Value>Size</Value>
               </Attribute>
            </CustomAttributes>
            <ReservationId>00025591527970563</ReservationId>
         </OrderItem>
         <OrderItem id="item_3" webLineId="3" action="ADD">
            <ItemId>21-10180569</ItemId>
            <Quantity>1</Quantity>
            <Description>
               <Description>Black Tennis Shoes</Description>
               <Color id="700">Brown</Color>
               <Size id="6-M">6-M</Size>
            </Description>
            <Pricing>
               <Merchandise>
                  <Amount>114.00</Amount>
                  <TaxData>
                     <TaxClass>76800</TaxClass>
                     <Taxes>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2398" jurisdictionLevel="STATE">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.065</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>7.41</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2399" jurisdictionLevel="COUNTY">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.01</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>1.14</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78112" jurisdictionLevel="DISTRICT">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78858" jurisdictionLevel="DISTRICT">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="92532" jurisdictionLevel="DISTRICT">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0025</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.29</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2400" jurisdictionLevel="DISTRICT">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                     </Taxes>     
                  </TaxData>
                  <UnitPrice>114.00</UnitPrice>
               </Merchandise>
               <Shipping>
                  <Amount>5.00</Amount>
                  <TaxData>
                     <TaxClass>93000</TaxClass>
                     <Taxes>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2398" jurisdictionLevel="STATE">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2399" jurisdictionLevel="COUNTY">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78112" jurisdictionLevel="DISTRICT">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="78858" jurisdictionLevel="DISTRICT">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="92532" jurisdictionLevel="DISTRICT">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionId="2400" jurisdictionLevel="DISTRICT">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.0</CalculatedTax>
                        </Tax>
                     </Taxes>
                  </TaxData>
               </Shipping>
            </Pricing>
            <ShippingMethod>ANY_2DAY</ShippingMethod>
            <EstimatedDeliveryDate>
               <Mode>CALIBRATION</Mode>
               <MessageType>DeliveryDate</MessageType>
               <Template>custom template</Template>
            </EstimatedDeliveryDate>
            <VendorId>Vendor1</VendorId>
            <VendorName>Broad Street's vendor</VendorName>
            <SerialNumber>123</SerialNumber>
            <CustomAttributes>
               <Attribute>
                  <Key>PVAR_CODE_COLOR</Key>
                  <Value>700</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_DESC_COLOR</Key>
                  <Value>Brown</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_LABEL_COLOR</Key>
                  <Value>color</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_CODE_SIZE</Key>
                  <Value>6-M</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_DESC_SIZE</Key>
                  <Value>6-M</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_LABEL_SIZE</Key>
                  <Value>Size</Value>
               </Attribute>
            </CustomAttributes>
            <ReservationId>00025591527970563</ReservationId>
         </OrderItem>
      </OrderItems>
      <Shipping>
         <ShipGroups>
            <ShipGroup chargeType="WEIGHTBASED" id="shipgroup_1">
               <DestinationTarget ref="address_0029"/>
               <OrderItems>
                  <Item ref="item_1"/>
               </OrderItems>
            </ShipGroup>
         </ShipGroups>
         <Destinations>
            <MailingAddress id="address_0029">
               <PersonName>
                  <Honorific>Mr.</Honorific>
                  <LastName>Patel</LastName>
                  <MiddleName>TestMiddle</MiddleName>
                  <FirstName>Ankur</FirstName>
               </PersonName>
               <Address>
                  <Line1>9193 18th St</Line1>
                  <City>San Leandro</City>
                  <MainDivision>CA</MainDivision>
                  <CountryCode>US</CountryCode>
                  <PostalCode>94577</PostalCode>
               </Address>
               <Phone>610-555-3333</Phone>
            </MailingAddress>
            <MailingAddress id="billing_1">
               <PersonName>
                  <LastName>White</LastName>
                  <FirstName>Jenny</FirstName>
               </PersonName>
               <Address>
                  <Line1>9193 18th St</Line1>
                  <City>Jacksonville</City>
                  <MainDivision>FL</MainDivision>
                  <CountryCode>US</CountryCode>
                  <PostalCode>32207</PostalCode>
               </Address>
               <Phone>484-555-2345</Phone>
            </MailingAddress>
         </Destinations>
      </Shipping>
      <Payment>
         <BillingAddress ref="billing_1"/>
         <Payments>
            <CreditCard>
               <PaymentContext>
                  <PaymentSessionId>00025591527970563</PaymentSessionId>
                  <TenderType>VC</TenderType>
                  <PaymentAccountUniqueId isToken="true">425334OKhJ9l0007</PaymentAccountUniqueId>
               </PaymentContext>
               <PaymentRequestId>f1421518-326c-47f2-8f72-d45a3574844a</PaymentRequestId>
               <CreateTimeStamp>2015-03-30T15:13:00</CreateTimeStamp>
               <Authorization>
                  <ResponseCode>APPROVED</ResponseCode>
                  <BankAuthorizationCode>000032</BankAuthorizationCode>
                  <CVV2ResponseCode>M</CVV2ResponseCode>
                  <AVSResponseCode>Y</AVSResponseCode>
                  <AmountAuthorized>129.55</AmountAuthorized>
               </Authorization>
               <ExpirationDate>2021-09</ExpirationDate>
            </CreditCard>
         </Payments>
      </Payment>
      <Currency>USD</Currency>
      <TaxHeader>
         <Error>false</Error>
      </TaxHeader>
      <PrintedCatalogCode>40179</PrintedCatalogCode>
      <Locale>en_US</Locale>
      <OrderHistoryUrl>http://orderlookup.com</OrderHistoryUrl>
   </Order>
   <ReasonCode>EP</ReasonCode>
   <ReasonDesc>Customer Requested</ReasonDesc>
   <RequestingApplication>Customer Care</RequestingApplication>
   <CustomerServiceInfo>
      <Agent id="43383313AC1169BE00830D56FA7A7015" name="test name" />
      <InteractionId>ADB56493AC1169BC00BCB09C88AF99F4</InteractionId>
      <TransactionId>243129</TransactionId>
   </CustomerServiceInfo>
   <Context>
      <BrowserData>
         <HostName>sectst02-live.us.gspt.net</HostName>
         <IPAddress>208.247.73.130</IPAddress>
         <SessionId>vtP0bAUqN7j0bEpuSrHnnBCG40gigFixaD-p99PG</SessionId>
         <UserAgent>Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</UserAgent>
         <Connection>keep-alive</Connection>
         <Cookies>s_nr=1328113718440; certona_tracking_parameter=l0.sFfEdofcAAAE1W1R.LV4r; 
            BrowserID_TMSEU-TMSDE-Site=J0.sFfEd6_gAAAE1Zf0HiWj7; BrowserIDCreationTime=1328906239333; cc-cFmsFfEdGpMAAAE1iBNzYkwY=zYWsFfEdtgEAAAE14RAHiWj8; 
            s_rdcvpc=%5B%5B'www.sandbox.paypal.com'%2C'1329321571382'%5D%5D; sid=vtP0bAUqN7j0bEpuSrHnnBCG40gigFixaD-p99PG; 
            pgid-TMSEU-TMSDE-Site=CQVYEt.CH5dSRpcGb9CmasMe0000zLzZeRBA; cc-fYqsFfEd2t8AAAE1oShFf42l=z6esFfEd2pEAAAE10k00oaVb; 
            WA_ReferrerSource=-; s_cc=true; __utma=172174241.570529138.1328906240.1328906240.1329919076.2; __utmb=172174241.7.10.1329919076; 
            __utmc=172174241; __utmz=172174241.1328906240.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_previousPageName=Checkout%3A
            %20Review%20and%20Submit%20Order; s_sq=gsictmsdedev%3D%2526pid%253DCheckout%25253A%252520Review%252520and%252520Submit%252520Order
            %2526pidt%253D1%2526oid%253DSubmit%252520Order%2526oidt%253D3%2526ot%253DSUBMIT</Cookies>
         <JavascriptData>TF1;015;;;;;;;;;;;;;;;;;;;;;;Mozilla;Netscape;5.0%20%28Windows%20NT%206.1%3B%20WOW64%29%20AppleWebKit/535.11%20
            %28KHTML%2C%20like%20Gecko%29%20Chrome/17.0.963.56%20Safari/535.11;20030107;undefined;true;;true;Win32;undefined;Mozilla/5.0%20
            %28Windows%20NT%206.1%3B%20WOW64%29%20AppleWebKit/535.11%20%28KHTML%2C%20like%20Gecko%29%20Chrome/17.0.963.56%20Safari/535.11;
            en-US;ISO-8859-1;sectst02-live.us.gspt.net;undefined;undefined;undefined;undefined;true;false;1329919276230;-5;Tue%20Jun%2007
            %202005%2021%3A33%3A44%20GMT-0400%20%28Eastern%20Daylight%20Time%29;1440;900;;10.3;;;;;3;300;240;Wed%20Feb%2022%202012%2009%3A01
            %3A16%20GMT-0500%20%28Eastern%20Standard%20Time%29;32;1378;900;0;0;;;;;;Shockwave%20Flash%7CShockwave%20Flash%2011.1%20r102;;;;;;;;;Silverlight
            %20Plug-In%7C4.0.60531.0;;;;15;</JavascriptData>
         <Referrer>https://sectst02-live.us.gspt.net/gsi/webstore/WFS/TMSEU-TMSDE-Site/de_DE/-/EUR/ViewData-Start/1749939151?JumpTarget=ViewCheckoutReview-Start</Referrer>
         <HTTPAcceptData>
            <ContentTypes>text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8</ContentTypes>
            <Encoding>gzip,deflate,sdch</Encoding>
            <Language>en-US,en;q=0.8</Language>
            <CharSet>ISO-8859-1,utf-8;q=0.7,*;q=0.3</CharSet>
         </HTTPAcceptData>
      </BrowserData>
      <TdlOrderTimestamp>2014-11-19T17:36:27</TdlOrderTimestamp>
      <SessionInfo>
         <RTCTransactionResponseCode>RTCTransactionResponseCode</RTCTransactionResponseCode>
         <RTCReasonCodes>RTCReasonCodes</RTCReasonCodes>
      </SessionInfo>
      <CustomAttributes>
         <Attribute>
            <Key>CARTID</Key>
            <Value>00025676291476350</Value>
         </Attribute>
         <Attribute>
            <Key>AmexNameResp</Key>
            <Value>Sir Digsby Chicken Caesar</Value>
         </Attribute>
         <Attribute>
            <Key>AmexPhoneResp</Key>
            <Value>Hello, how are you</Value>
         </Attribute>
      </CustomAttributes>
   </Context>
</OrderUpdateRequest>

Response XML

Copy this code sample.
<?xml version="1.0" encoding="UTF-8"?>
<OrderUpdateResponse xmlns="http://api.gsicommerce.com/schema/checkout/1.0" orderType="SALES">
   <ResponseStatus>FAILURE</ResponseStatus>
   <Order customerOrderId="00025591527970563" levelOfService="REGULAR">
      <Customer customerId="000041622110178">
         <Name>
            <LastName>TEST</LastName>
            <FirstName>NAME</FirstName>
         </Name>
         <EmailAddress>RIT_APGTestAuto@dashboard.gsi</EmailAddress>
         <CustomerTaxId>12345</CustomerTaxId>
         <TaxExemptFlag>true</TaxExemptFlag>
      </Customer>
      <CreateTime>2015-03-30T15:13:00+00:00</CreateTime>
      <OrderItems>
         <OrderItem id="item20150629142728104753543" webLineId="1">
            <ItemId>21-10180564</ItemId>
            <Quantity>1</Quantity>
            <ShippedQuantity>1</ShippedQuantity>
            <Description>
               <Description>Black Tennis Shoes</Description>
               <Color id="700">Brown</Color>
               <Size id="6-M">6-M</Size>
            </Description>
            <Pricing>
               <Merchandise>
                  <Amount>114.00</Amount>
                  <TaxData>
                     <TaxClass>76800</TaxClass>
                     <Taxes>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="STATE" jurisdictionId="2398">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.065</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>7.41</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="COUNTY" jurisdictionId="2399">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.010</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>1.14</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="78112">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="78858">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="92532">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0025</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.29</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="2400">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                     </Taxes>
                  </TaxData>
                  <UnitPrice>114.00</UnitPrice>
               </Merchandise>
               <Shipping>
                  <Amount>5.00</Amount>
                  <TaxData>
                     <TaxClass>93000</TaxClass>
                     <Taxes>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="STATE" jurisdictionId="2398">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="COUNTY" jurisdictionId="2399">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="78112">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="78858">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="92532">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="2400">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                     </Taxes>
                  </TaxData>
                  <UnitPrice>0.00</UnitPrice>
               </Shipping>
               <Duty>
                  <TaxData/>
               </Duty>
            </Pricing>
            <Carrier mode="2DAY">ANY</Carrier>
            <FulfillmentChannel>SHIP_TO_HOME</FulfillmentChannel>
            <EstimatedDeliveryDate>
               <DeliveryWindow>
                  <From>2015-07-01T14:27:44+00:00</From>
                  <To>2015-07-02T14:27:44+00:00</To>
               </DeliveryWindow>
               <ShippingWindow>
                  <From>2015-06-30T14:27:44+00:00</From>
                  <To>2015-06-30T14:27:44+00:00</To>
               </ShippingWindow>
               <Mode>CALIBRATION</Mode>
               <MessageType>DeliveryDate</MessageType>
               <Template>You can expect to receive your item(s) between {0,date} and {1,date}.</Template>
            </EstimatedDeliveryDate>
            <VendorId>27883</VendorId>
            <VendorName>QS Retail</VendorName>
            <Statuses>
               <Status>
                  <Quantity>1</Quantity>
                  <Status>Fulfilled and Invoiced</Status>
                  <StatusDate>2015-06-29T14:37:52+00:00</StatusDate>
                  <ProductAvailabilityDate>2015-06-29</ProductAvailabilityDate>
                  <Warehouse>GSI-DC397</Warehouse>
               </Status>
            </Statuses>
            <OMSLineId>1-1</OMSLineId>
            <SerialNumber>123</SerialNumber>
            <CustomAttributes>
               <Attribute>
                  <Key>PVAR_CODE_COLOR</Key>
                  <Value>700</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_DESC_COLOR</Key>
                  <Value>Brown</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_LABEL_COLOR</Key>
                  <Value>color</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_CODE_SIZE</Key>
                  <Value>6-M</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_DESC_SIZE</Key>
                  <Value>6-M</Value>
               </Attribute>
               <Attribute>
                  <Key>PVAR_LABEL_SIZE</Key>
                  <Value>Size</Value>
               </Attribute>
               <Attribute>
                  <Key>GlobalGSIItemId</Key>
                  <Value>011590096</Value>
               </Attribute>
               <Attribute>
                  <Key>Alphanumeric UPC Number</Key>
                  <Value/>
               </Attribute>
               <Attribute>
                  <Key>PackedDateTime</Key>
                  <Value>2014-12-15T19:04:08</Value>
               </Attribute>
            </CustomAttributes>
            <GiftRegistryCancelUrl/>
            <ReservationId>00025591527970563</ReservationId>
            <ChargeGroups>
               <ChargeGroup name="Tax" adjustmentCategory="TaxCredit">
                  <ReferencedCharges>
                     <TaxCharge name="Price" category="Price" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="7.41"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="STATE" jurisdictionId="2398">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.065</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>7.41</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Price" category="Price" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="1.14"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="COUNTY" jurisdictionId="2399">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.010</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>1.14</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Price" category="Price" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.57"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="78112">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Price" category="Price" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.57"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="78858">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Price" category="Price" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.29"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="92532">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.0025</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.29</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Price" category="Price" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.57"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="TAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="2400">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.005</EffectiveRate>
                           <TaxableAmount>114.0</TaxableAmount>
                           <CalculatedTax>0.57</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Shipping" category="Shipping" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.00"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="STATE" jurisdictionId="2398">CALIFORNIA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Shipping" category="Shipping" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.00"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="COUNTY" jurisdictionId="2399">ALAMEDA</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Shipping" category="Shipping" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.00"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="78112">BAY AREA RAPID TRANSIT DISTRICT (BART)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Shipping" category="Shipping" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.00"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="78858">ESSENTIAL HEALTH CARE SERVICES (ACHC)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Shipping" category="Shipping" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.00"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="92532">TRANSACTIONS AND USE TAX (SLGF)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                     <TaxCharge name="Shipping" category="Shipping" isDiscount="false" isPromotion="false"
                                informational="false"
                                unitPrice="0.00"
                                linePrice="0.00"
                                amount="0.00"
                                taxType="SELLER_USE">
                        <Tax taxType="SELLER_USE" taxability="NONTAXABLE">
                           <Situs>DESTINATION</Situs>
                           <Jurisdiction jurisdictionLevel="DISTRICT" jurisdictionId="2400">TRANSPORTATION IMPROVEMENT AUTHORITY (ACTI)</Jurisdiction>
                           <Imposition impositionType="General Sales and Use Tax">Local Sales and Use Tax</Imposition>
                           <EffectiveRate>0.000</EffectiveRate>
                           <TaxableAmount>0.0</TaxableAmount>
                           <CalculatedTax>0.00</CalculatedTax>
                        </Tax>
                     </TaxCharge>
                  </ReferencedCharges>
                  <AdjustmentCharges/>
               </ChargeGroup>
               <ChargeGroup name="Shipping" adjustmentCategory="ShippingCredit">
                  <ReferencedCharges>
                     <Charge name="Shipping" category="Shipping" isDiscount="false" isPromotion="false"
                             informational="false"
                             unitPrice="0.00"
                             linePrice="5.00"
                             amount="5.00"/>
                  </ReferencedCharges>
                  <AdjustmentCharges/>
               </ChargeGroup>
               <ChargeGroup name="Merchandise" adjustmentCategory="PriceAdjustment">
                  <ReferencedCharges>
                     <Charge name="Merchandise" category="Merchandise" isDiscount="false"
                             isPromotion="false"
                             informational="false"
                             unitPrice="114.00"
                             amount="114.00"/>
                  </ReferencedCharges>
                  <AdjustmentCharges/>
               </ChargeGroup>
            </ChargeGroups>
         </OrderItem>
      </OrderItems>
      <Shipping>
         <ShipGroups>
            <ShipGroup id="shipgroup_1" chargeType="WEIGHTBASED">
               <DestinationTarget ref="address_0029"/>
               <OrderItems>
                  <Item ref="item20150629142728104753543"/>
               </OrderItems>
            </ShipGroup>
         </ShipGroups>
         <Destinations>
            <MailingAddress id="address_0029">
               <PersonName>
                  <Honorific>Mr.</Honorific>
                  <LastName>Patel</LastName>
                  <MiddleName>TestMiddle</MiddleName>
                  <FirstName>Ankur</FirstName>
               </PersonName>
               <Address>
                  <Line1>9193 18th St</Line1>
                  <City>San Leandro</City>
                  <MainDivision>CA</MainDivision>
                  <CountryCode>US</CountryCode>
                  <PostalCode>94577</PostalCode>
               </Address>
               <Phone>6105553333</Phone>
            </MailingAddress>
            <MailingAddress id="billing_1">
               <PersonName>
                  <LastName>White</LastName>
                  <FirstName>Jenny</FirstName>
               </PersonName>
               <Address>
                  <Line1>9193 18th St</Line1>
                  <City>Jacksonville</City>
                  <MainDivision>FL</MainDivision>
                  <CountryCode>US</CountryCode>
                  <PostalCode>32207</PostalCode>
               </Address>
               <Phone>4845552345</Phone>
            </MailingAddress>
         </Destinations>
         <Shipments>
            <Shipment id="sno_100002872" destinationRef="address_0029">
               <ShippedItems>
                  <ShippedItem>
                     <Item ref="item20150629142728104753543"/>
                     <Quantity>1</Quantity>
                     <InvoiceNo/>
                     <TrackingNumbers>
                        <TrackingNumber>100000109583001787</TrackingNumber>
                     </TrackingNumbers>
                  </ShippedItem>
               </ShippedItems>
               <Warehouse>GSI-DC397</Warehouse>
               <Carrier mode="GND51">UPS</Carrier>
               <TotalWeight>1.50</TotalWeight>
               <ShippedDate>2014-12-16T00:11:34+00:00</ShippedDate>
            </Shipment>
         </Shipments>
      </Shipping>
      <Payment>
         <BillingAddress ref="billing_1"/>
         <Payments>
            <CreditCard>
               <PaymentContext>
                  <PaymentSessionId/>
                  <TenderType>VC</TenderType>
                  <PaymentAccountUniqueId isToken="true">425334OKhJ9l0007</PaymentAccountUniqueId>
               </PaymentContext>
               <Amount>129.55</Amount>
               <Authorization>
                  <ResponseCode/>
                  <BankAuthorizationCode/>
                  <CVV2ResponseCode/>
                  <AVSResponseCode/>
                  <AmountAuthorized>0.00</AmountAuthorized>
               </Authorization>
               <ExpirationDate>2021-09</ExpirationDate>
            </CreditCard>
         </Payments>
         <Status>PAID</Status>
      </Payment>
      <Currency>USD</Currency>
      <TaxHeader>
         <Error>false</Error>
      </TaxHeader>
      <PrintedCatalogCode>40179</PrintedCatalogCode>
      <Locale>en_US</Locale>
      <Status>Fulfilled and Invoiced</Status>
      <CustomAttributes>
         <Attribute>
            <Key>ORDER_SERVICE_ORDER_ID</Key>
            <Value>48336</Value>
         </Attribute>
      </CustomAttributes>
      <OrderHistoryUrl>http://orderlookup.com</OrderHistoryUrl>
      <ExchangeOrders/>
   </Order>
</OrderUpdateResponse>