cd
CDEK is one of the largest logistics and courier delivery companies in Russia, offering nationwide delivery services for e-commerce, business, and individual shipments. CDEK provides a comprehensive API for creating orders, tracking shipments, calculating delivery costs, and managing pickup points.
With the CDEK integration in AACFlow, you can:
- Create delivery orders: Generate shipments with full address, tariff, and item details
- Track shipments: Monitor delivery status and get real-time location updates
- Calculate delivery costs: Get pricing estimates for different tariffs and destinations
- Find pickup points: Search for CDEK pickup locations near a given address
- Manage returns: Create return orders and track reverse logistics
- Generate labels: Create and print delivery labels and accompanying documents
This integration provides end-to-end logistics automation for e-commerce and shipping operations across Russia.
Nutzungsanleitung
Integrate CDEK into the workflow. Can create orders, track shipments, calculate costs, and find pickup points. Requires CDEK API credentials.
Tools
cdek_create_order
Create a new delivery order
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
fromLocation | object | Ja | Sender city/address |
toLocation | object | Ja | Recipient city/address |
tariffCode | number | Ja | CDEK tariff code |
packages | array | Ja | Array of package objects with weight and dimensions |
recipient | object | Ja | Recipient name, phone, email |
clientId | string | Ja | CDEK API client ID |
clientSecret | string | Ja | CDEK API client secret |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
orderUuid | string | CDEK order UUID |
cdekNumber | string | CDEK tracking number |
status | string | Order status |
cdek_get_status
Get shipment status
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
orderUuid | string | Ja | CDEK order UUID |
clientId | string | Ja | CDEK API client ID |
clientSecret | string | Ja | CDEK API client secret |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
status | string | Current shipment status |
statusCode | number | Numeric status code |
deliveryDate | string | Estimated delivery date |
cdek_calculate
Calculate delivery cost
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
fromCityId | number | Ja | Origin city CDEK ID |
toCityId | number | Ja | Destination city CDEK ID |
weight | number | Ja | Package weight (kg) |
length | number | Nein | Package length (cm) |
width | number | Nein | Package width (cm) |
height | number | Nein | Package height (cm) |
clientId | string | Ja | CDEK API client ID |
clientSecret | string | Ja | CDEK API client secret |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
tariffs | array | Array of tariff options with price and delivery time |

