Meta API Live Pickup Request module

  1. General

    Please note Pickup Requests are not the same as  Collection Requests!
    Collection Requests, as described here, are a way to ask DPD to go pick up a parcel somewhere and bring it to you or a third party. A Pickup Request on the other hand, is simply asking DPD to come send a driver over to you so they can pick up the parcels you prepared. Collection Requests are also possible in Meta API and are discussed in it’s separate section.

    Attention – Live requests will be carried out, even if only for testing purposes. Please agree with the Meta API team or DPD BU Sales/Operational representative to cancel the assignments timely in such case.

    Below you will find an example of a basic request, but you can find all possible parameters and fields on the Swagger page.

  2. Parameters

    Method:

    • POST

    URL:

    • https://api.dpdgroup.com/shipping/v1/pickupscheduling

    Parameters:

    • debug true

    Authorization:

    • X_DPD_TOKEN Bearer Token from login service (326-digits)

    Headers

    • Content-Type application/json
  3. Call Body

    {
    "pickup": {
    "date": "2024-08-02",
    "fromTime": "0900",
    "toTime": "1700"
    },
    "numberOfParcels": 1,
    "pickupAddress": {
    "name1": "DPD BE SENDER",
    "street": "Egide Walschaertsstraat 20",
    "country": "BE",
    "zipCode": "2800",
    "city": "Mechelen"
    },
    "pickupContact": {
    "phone1": "0123456789",
    "email": test@dpdgroup.com,
    "contactPerson":"DPD Contact"
    }
    }
  4. Response

    A response containing the Pickup Reference, Status Code and Status Code’s description.

Was this post helpful?(Required)