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.
Usage Instructions
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
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
bearerToken | string | Yes | Yandex Delivery bearer token |
fromAddress | string | Yes | Pickup address |
toAddress | string | Yes | Drop-off address |
items | string | Yes | Items JSON array (e.g., [{"name":"Box","weight":5}]) |
Output
| Parameter | Type | Description |
|---|---|---|
claimId | string | Created claim ID |
status | string | Initial claim status |
yandex_delivery_get_claim
Get claim information
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
bearerToken | string | Yes | Yandex Delivery bearer token |
claimId | string | Yes | Delivery claim ID |
Output
| Parameter | Type | Description |
|---|---|---|
claimId | string | Claim ID |
status | string | Current status |
courier | object | Assigned courier details |
yandex_delivery_cancel_claim
Cancel a delivery claim
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
bearerToken | string | Yes | Yandex Delivery bearer token |
claimId | string | Yes | Delivery claim ID to cancel |
cancelState | string | No | Cancel state: free (no charge) or paid (courier dispatched) |
Output
| Parameter | Type | Description |
|---|---|---|
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

