Yandex Delivery
Lieferaufträge über Yandex Delivery (Yandex.Taxi Cargo) erstellen, abrufen und stornieren
ya
Yandex Delivery (Яндекс Доставка, formerly Yandex.Taxi Cargo) is Yandex's courier delivery service API for last-mile logistics. It provides on-demand delivery claim management with real-time courier dispatch.
With the Yandex Delivery integration in AACFlow, you can:
- Create Claim: Submit a new delivery request with pickup and drop-off addresses
- Get Claim Info: Retrieve the current status and details of a delivery claim
- Cancel Claim: Cancel an existing delivery claim
This integration enables e-commerce fulfillment, on-demand delivery orchestration, and logistics automation workflows.
Nutzungsanleitung
Integrate Yandex Delivery into the workflow to manage courier claims. Requires a Yandex Delivery bearer token (OAuth 2.0) from your Yandex business account. Contact Yandex Delivery support for API access.
Tools
yandex_delivery_create_claim
Create a delivery claim
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
bearerToken | string | Ja | Yandex Delivery bearer token |
fromAddress | string | Ja | Pickup address |
toAddress | string | Ja | Drop-off address |
items | string | Ja | Items JSON array (e.g., [{"name":"Box","weight":5}]) |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
claimId | string | Created claim ID |
status | string | Initial claim status |
yandex_delivery_get_claim
Get claim information
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
bearerToken | string | Ja | Yandex Delivery bearer token |
claimId | string | Ja | Delivery claim ID |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
claimId | string | Claim ID |
status | string | Current status |
courier | object | Assigned courier details |
yandex_delivery_cancel_claim
Cancel a delivery claim
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
bearerToken | string | Ja | Yandex Delivery bearer token |
claimId | string | Ja | Delivery claim ID to cancel |
cancelState | string | Nein | Cancel state: free (no charge) or paid (courier dispatched) |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
success | boolean | Whether the cancellation succeeded |
status | string | Final claim status |
Links
- Official API: https://yandex.ru/dev/logistics/api/
- AACFlow block source: apps/aacflow/blocks/blocks/yandex_delivery.ts

