“Forward by Amazon” – A specific method to allow Amazon fulfilment centre direct injections.

  1. Specs and Activation

    The FBA product is specifically designed to be able to ship (large) volumes into Amazon HUB’s located in by example Germany, Spain and Italy. By injecting your parcels with this specific code at a designated DPD depot or HUB, the regular sorting process is omitted, resulting in a faster and more efficient forwarding process.

    Only a few destination addresses are allowed and the rules for shipping with this product are strict.

    For more information on this shipment method, please consult your DPD account manager or via our DPD website

  2. Shipping

    Shipping product FBA via the Webservice is almost identical to shipping a DPD Business product (B2B) with the API. Only the product code changes from ‘CL’ to ‘FBA’.

    First, as always, use the login service to authenticate and store the token for the given timeframe of validity.

    Then create a B2B shipment as described in the general API documentation , changing the product to ‘FBA’.

    <soapenv:Body>
    <ns1:storeOrders>
    <printOptions>
    <printerLanguage>PDF</printerLanguage>
    <paperFormat>A6</paperFormat>
    </printOptions>
    <order>
    <generalShipmentData>
    <sendingDepot>0530</sendingDepot>
       <product>FBA</product>
    <sender>
    <name1>YOUR NAME</name1>
    <street>Your street 55</street>
    <country>BE</country>
    <zipCode>9140</zipCode>
    <city>TEMSE</city>
    <phone>+32400000000</phone>
    <email>sender@dpd.be</email>
    </sender>
    <recipient>
    <name1>AMAZON WAREHOUSE</name1>
    <name2>Germany South</name2>
    <street>Destination street 1</street>
    <country>DE</country>
    <zipCode>60306</zipCode>
    <city>FRANKFURT</city>
    <phone>+32400000000</phone>
    <email>fba@dpd.be</email>
    </recipient>
    </generalShipmentData>
    <parcels>
    <weight>500</weight>
    </parcels>
    <productAndServiceData>
    <orderType>consignment</orderType>
    </productAndServiceData>
    </order>
    </ns1:storeOrders>

     

     

    The call above will result in following PDF label: (Base64)

    Please keep in mind the API Developer Guidelines still apply and sequential label generation and keeping the requests within rate limiting are most important.

Was this post helpful?(Required)