Click or drag to resize

Add Item

[This is preliminary documentation and is subject to change.]

Adds an item to an existing order.

Sample Request
XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:pur="http://PurolatorServices.com/">
   <soap:Header/>
   <soap:Body>
        <pur:AddItem>
            <pur:request>
                <pur:Credentials>
                    <pur:UserName>TestUser</pur:UserName>
                    <pur:Password>5VJrtqTa</pur:Password>
                    <pur:ClientID>0000000</pur:ClientID>
                </pur:Credentials>
                <pur:OrderNumber>Test-0001</pur:OrderNumber>
                <pur:Items>
                    <pur:RequestItemV3>
                        <pur:SKU>TShirtMD-1654</pur:SKU>
                        <pur:CustomsDesc>Clothing</pur:CustomsDesc>
                        <pur:ExtendedDesc>TShirt With Logo</pur:ExtendedDesc>
                        <pur:Quantity>1</pur:Quantity>
                        <pur:TotalValue>19.99</pur:TotalValue>
                        <pur:Currency>USD</pur:Currency>
                        <pur:CountryOfOrigin>US</pur:CountryOfOrigin>
                        <pur:HSCode/>
                        <pur:NAFTAEligible>true</pur:NAFTAEligible>
                        <pur:FDAFood>false</pur:FDAFood>
                        <pur:Textile>true</pur:Textile>
                    </pur:RequestItemV3>
            </pur:Items>
         </pur:request>
      </pur:AddItem>
   </soap:Body>
</soap:Envelope>
Sample Response
XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <soap:Body>
      <AddItemResponse xmlns="http://PurolatorServices.com/">
         <AddItemResult>
            <Status>0</Status>
            <Request>
               <OrderNumber>Test-0001</OrderNumber>
               <Items>
                  <RequestItemV3>
                     <SKU>TShirtMD-1654</SKU>
                     <CustomsDesc>Clothing</CustomsDesc>
                     <ExtendedDesc>TShirt With Logo</ExtendedDesc>
                     <Quantity>1</Quantity>
                     <TotalValue>19.99</TotalValue>
                     <Currency>USD</Currency>
                     <CountryOfOrigin>US</CountryOfOrigin>
                     <HSCode/>
                     <NAFTAEligible>true</NAFTAEligible>
                     <FDAFood>false</FDAFood>
                     <Textile>true</Textile>
                  </RequestItemV3>
               </Items>
            </Request>
         </AddItemResult>
      </AddItemResponse>
   </soap:Body>
</soap:Envelope>