dp
DPD is an international parcel delivery service with extensive coverage across Russia and Europe. Its REST API supports delivery cost calculation and parcel tracking.
With the DPD integration in AACFlow, you can:
- Calculate Delivery: Estimate shipping costs between origin and destination cities
- Track Parcel: Retrieve real-time tracking status for a parcel
This integration enables automated shipping cost estimation and parcel status monitoring in e-commerce and logistics workflows.
Nutzungsanleitung
Integrate DPD into the workflow to manage shipments. Requires a DPD client key from your DPD business account. Contact DPD Russia for API access credentials.
Tools
dpd_calculate
Calculate delivery cost
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
clientKey | string | Ja | DPD client key |
fromCity | string | Ja | Origin city |
toCity | string | Ja | Destination city |
weight | number | Ja | Package weight in kg |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
price | number | Delivery cost |
currency | string | Price currency |
period | string | Estimated delivery days |
dpd_track
Track a parcel
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
clientKey | string | Ja | DPD client key |
trackingNumber | string | Ja | DPD tracking number |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
status | string | Current parcel status |
events | array | Tracking event history |
location | string | Current parcel location |
Links
- Official API: https://api.dpd.ru/
- AACFlow block source: apps/aacflow/blocks/blocks/dpd.ts

