Download OpenAPI specification:
With the Noor Delivery API you can create deliveries, track them in real time, and manage cancellations and returns.
Noor provides a static token which must be sent in the X-Auth header on every request:
X-Auth: <your-static-token>
Contact your personal manager or the support team to obtain credentials.
Validation messages and certain names are returned in Uzbek by default.
To receive them in another language, set the Accept-Language header.
Possible values: en, ru, uz. An unrecognised value falls back to uz.
| Stage | Name | Stage | Name |
|---|---|---|---|
| 1 | New | 16 | Returning |
| 2 | Estimating | 17 | Return arrived |
| 3 | Ready for payment | 18 | Ready for return confirmation |
| 4 | Scheduled | 19 | Returned |
| 5 | Performer look-up | 20 | Returned finish |
| 6 | Performer draft | 21 | Cancelled by taxi |
| 7 | Performer found | 22 | Cancelled |
| 8 | Pick-up arrived | 23 | Cancelled with payment |
| 9 | Ready for pick-up confirmation | 24 | Cancelled with items on hand |
| 10 | Picked up | 25 | Failed |
| 11 | Delivery arrived | 26 | Estimating failed |
| 12 | Ready for delivery confirmation | 27 | Performer not found |
| 13 | Pay waiting | 28 | Cancelled out of zone |
| 14 | Delivered | 29 | Cancelled out of range |
| 15 | Delivered finish |
| Value | Behaviour |
|---|---|
CARD |
The vendor's card is checked for sufficient funds up front and charged once delivery finishes. |
CASH |
The delivery price is collected from the end client. |
BALANCE |
Drawn from the vendor balance, which can be topped up in advance. |
PAYME |
Paid through Payme. |
| Value | Behaviour |
|---|---|
EXPRESS |
Deliver right away. |
DELAYED |
Schedule for later — supply delivery.time in UTC. |
origin) to one, so product
information inside origin is not required.delivery.product_paid is true, Noor assumes the product price is
already settled and will not collect it from the end client.400 Bad Request that is not a validation error usually means a value has
the wrong type — for example a string where an integer is expected.Create, price, track, and cancel deliveries.
A typical flow is: POST /orders/eval to price a delivery, POST /orders to create it, then poll GET /orders/{order_id} (or consume webhooks) to follow it through the stages.
Create a standard delivery order
Order data
object (types.NullInt64) | |
required | object Delivery type |
required | Array of objects (types.PointFull) |
| is_business | boolean |
| is_integration | boolean |
| is_market | boolean |
| is_promotion | boolean |
required | Array of objects (types.PointFull) |
| payment_type required | string Enum: "CASH" "CARD" "BALANCE" |
object (types.NullStruct-types_PointFull) | |
| vendor_order_id required | string [ 1 .. 255 ] characters |
{- "card_id": {
- "int64": 0,
- "valid": true
}, - "delivery": {
- "delivery_base_price": 0,
- "door_to_door": true,
- "equipment_id": 0,
- "product_paid": true,
- "send_link": true,
- "time": "string"
}, - "destination": [
- {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
], - "is_business": true,
- "is_integration": true,
- "is_market": true,
- "is_promotion": true,
- "origin": [
- {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
], - "payment_type": "CASH",
- "return_address": {
- "valid": true,
- "value": {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
}, - "vendor_order_id": "string"
}{- "accepted_at": {
- "time": "string",
- "valid": true
}, - "card": {
- "valid": true,
- "value": {
- "id": 0,
- "number": "string"
}
}, - "courier": {
- "valid": true,
- "value": {
- "average_rating": {
- "float64": 0,
- "valid": true
}, - "created_at": {
- "time": "string",
- "valid": true
}, - "first_name": {
- "string": "string",
- "valid": true
}, - "id": 0,
- "last_name": {
- "string": "string",
- "valid": true
}, - "license_number": {
- "string": "string",
- "valid": true
}, - "location": {
- "valid": true,
- "value": {
- "lat": 0,
- "long": 0
}
}, - "middle_name": {
- "string": "string",
- "valid": true
}, - "phone": {
- "string": "string",
- "valid": true
}, - "profile_photo": {
- "string": "string",
- "valid": true
}, - "reported_at": {
- "time": "string",
- "valid": true
}
}
}, - "courier_delivery_comment": "string",
- "courier_order_debt_closed_at": {
- "time": "string",
- "valid": true
}, - "courier_order_debt_closed_by": {
- "int64": 0,
- "valid": true
}, - "courier_paid_at": {
- "time": "string",
- "valid": true
}, - "courier_payment_receipt_url": {
- "string": "string",
- "valid": true
}, - "courier_payment_status": 0,
- "created_at": "string",
- "delivery": {
- "delivery_base_price": 0,
- "door_to_door": true,
- "equipment_id": 0,
- "product_paid": true,
- "send_link": true,
- "time": {
- "time": "string",
- "valid": true
}, - "type": "string"
}, - "destination": [
- {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
], - "display_id": 0,
- "distances": {
- "dead_head": 0,
- "initial_dead_head_distance": 0,
- "order": 0
}, - "free_wait_time": 0,
- "id": 0,
- "is_business": true,
- "is_integration": true,
- "is_market": true,
- "is_promotion": true,
- "last_updated_by": {
- "int64": 0,
- "valid": true
}, - "link": {
- "string": "string",
- "valid": true
}, - "origin": [
- {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
], - "parent_order_id": {
- "int64": 0,
- "valid": true
}, - "payme_link": "string",
- "payment_type": "string",
- "price_per_minute_after_wait": 0,
- "pricing": {
- "additional_fixed_price": 0,
- "base_price_paid": true,
- "courier_profit": 0,
- "courier_profit_add_on": 0,
- "dead_head": 0,
- "delivery_base_price": 0,
- "discount": {
- "int64": 0,
- "valid": true
}, - "discount_price": 0,
- "door_to_door": 0,
- "free_wait_time": 0,
- "given_debt": true,
- "need_debt": true,
- "ofd_check_url": {
- "string": "string",
- "valid": true
}, - "order": 0,
- "price_per_minute_after_wait": 0,
- "product_ofd_check_url": {
- "string": "string",
- "valid": true
}, - "products": 0,
- "total": 0,
- "wait_price": 0
}, - "rating": {
- "valid": true,
- "value": {
- "client_id": {
- "int64": 0,
- "valid": true
}, - "comments": [
- {
- "comment": "string",
- "id": 0,
- "is_positive": true,
- "rated": true
}
], - "created_at": "string",
- "custom_comment": {
- "string": "string",
- "valid": true
}, - "id": 0,
- "order_display_id": {
- "int64": 0,
- "valid": true
}, - "order_id": {
- "int64": 0,
- "valid": true
}, - "photos": [
- "string"
], - "rate": 0,
- "vendor_id": {
- "int64": 0,
- "valid": true
}
}
}, - "reason": {
- "string": "string",
- "valid": true
}, - "return_address": {
- "valid": true,
- "value": {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
}, - "search_started_at": {
- "time": "string",
- "valid": true
}, - "search_stopped_at": {
- "time": "string",
- "valid": true
}, - "service_id": {
- "int64": 0,
- "valid": true
}, - "stage": 0,
- "token": "string",
- "total_late_minutes": 0,
- "trace": [
- {
- "lat": 0,
- "long": 0
}
], - "vendor": {
- "business_logo": {
- "string": "string",
- "valid": true
}, - "business_name": {
- "string": "string",
- "valid": true
}, - "equipment_id": {
- "int64": 0,
- "valid": true
}, - "equipment_search_minutes": {
- "int64": 0,
- "valid": true
}, - "has_card": {
- "bool": true,
- "valid": true
}, - "id": 0,
- "is_business": true,
- "is_corporate": true,
- "logo": {
- "string": "string",
- "valid": true
}, - "min_product_price_for_equipment": {
- "int64": 0,
- "valid": true
}, - "name": "string",
- "phone": "string"
}, - "vendor_order_id": {
- "string": "string",
- "valid": true
}
}Retrieve orders associated with the currently authenticated user
| displayId | integer |
| fromApp | boolean |
| fromDate | string |
| isActive | boolean |
| isBalanceRefunded | boolean |
| isBusiness | boolean |
| isCancelled | boolean |
| isCancelledByCourier | boolean |
| isCourierDebt | boolean |
| isFinished | boolean |
| isInSearch | boolean |
| isNotFound | boolean |
| isPaid | boolean |
| isRated | boolean |
| isReturned | boolean |
| isScheduled | boolean |
| limit | integer |
| phone | string |
| search | string |
| skip | integer |
| stage | integer |
| tillDate | string |
{- "count": 0,
- "current_page": 0,
- "data": null,
- "last_page": 0,
- "page_size": 0
}Retrieve detailed information about a specific order
| order_id required | integer Order ID |
{- "accepted_at": {
- "time": "string",
- "valid": true
}, - "card": {
- "valid": true,
- "value": {
- "id": 0,
- "number": "string"
}
}, - "courier": {
- "valid": true,
- "value": {
- "average_rating": {
- "float64": 0,
- "valid": true
}, - "created_at": {
- "time": "string",
- "valid": true
}, - "first_name": {
- "string": "string",
- "valid": true
}, - "id": 0,
- "last_name": {
- "string": "string",
- "valid": true
}, - "license_number": {
- "string": "string",
- "valid": true
}, - "location": {
- "valid": true,
- "value": {
- "lat": 0,
- "long": 0
}
}, - "middle_name": {
- "string": "string",
- "valid": true
}, - "phone": {
- "string": "string",
- "valid": true
}, - "profile_photo": {
- "string": "string",
- "valid": true
}, - "reported_at": {
- "time": "string",
- "valid": true
}
}
}, - "courier_delivery_comment": "string",
- "courier_order_debt_closed_at": {
- "time": "string",
- "valid": true
}, - "courier_order_debt_closed_by": {
- "int64": 0,
- "valid": true
}, - "courier_paid_at": {
- "time": "string",
- "valid": true
}, - "courier_payment_receipt_url": {
- "string": "string",
- "valid": true
}, - "courier_payment_status": 0,
- "created_at": "string",
- "delivery": {
- "delivery_base_price": 0,
- "door_to_door": true,
- "equipment_id": 0,
- "product_paid": true,
- "send_link": true,
- "time": {
- "time": "string",
- "valid": true
}, - "type": "string"
}, - "destination": [
- {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
], - "display_id": 0,
- "distances": {
- "dead_head": 0,
- "initial_dead_head_distance": 0,
- "order": 0
}, - "free_wait_time": 0,
- "id": 0,
- "is_business": true,
- "is_integration": true,
- "is_market": true,
- "is_promotion": true,
- "last_updated_by": {
- "int64": 0,
- "valid": true
}, - "link": {
- "string": "string",
- "valid": true
}, - "origin": [
- {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
], - "parent_order_id": {
- "int64": 0,
- "valid": true
}, - "payme_link": "string",
- "payment_type": "string",
- "price_per_minute_after_wait": 0,
- "pricing": {
- "additional_fixed_price": 0,
- "base_price_paid": true,
- "courier_profit": 0,
- "courier_profit_add_on": 0,
- "dead_head": 0,
- "delivery_base_price": 0,
- "discount": {
- "int64": 0,
- "valid": true
}, - "discount_price": 0,
- "door_to_door": 0,
- "free_wait_time": 0,
- "given_debt": true,
- "need_debt": true,
- "ofd_check_url": {
- "string": "string",
- "valid": true
}, - "order": 0,
- "price_per_minute_after_wait": 0,
- "product_ofd_check_url": {
- "string": "string",
- "valid": true
}, - "products": 0,
- "total": 0,
- "wait_price": 0
}, - "rating": {
- "valid": true,
- "value": {
- "client_id": {
- "int64": 0,
- "valid": true
}, - "comments": [
- {
- "comment": "string",
- "id": 0,
- "is_positive": true,
- "rated": true
}
], - "created_at": "string",
- "custom_comment": {
- "string": "string",
- "valid": true
}, - "id": 0,
- "order_display_id": {
- "int64": 0,
- "valid": true
}, - "order_id": {
- "int64": 0,
- "valid": true
}, - "photos": [
- "string"
], - "rate": 0,
- "vendor_id": {
- "int64": 0,
- "valid": true
}
}
}, - "reason": {
- "string": "string",
- "valid": true
}, - "return_address": {
- "valid": true,
- "value": {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
}, - "search_started_at": {
- "time": "string",
- "valid": true
}, - "search_stopped_at": {
- "time": "string",
- "valid": true
}, - "service_id": {
- "int64": 0,
- "valid": true
}, - "stage": 0,
- "token": "string",
- "total_late_minutes": 0,
- "trace": [
- {
- "lat": 0,
- "long": 0
}
], - "vendor": {
- "business_logo": {
- "string": "string",
- "valid": true
}, - "business_name": {
- "string": "string",
- "valid": true
}, - "equipment_id": {
- "int64": 0,
- "valid": true
}, - "equipment_search_minutes": {
- "int64": 0,
- "valid": true
}, - "has_card": {
- "bool": true,
- "valid": true
}, - "id": 0,
- "is_business": true,
- "is_corporate": true,
- "logo": {
- "string": "string",
- "valid": true
}, - "min_product_price_for_equipment": {
- "int64": 0,
- "valid": true
}, - "name": "string",
- "phone": "string"
}, - "vendor_order_id": {
- "string": "string",
- "valid": true
}
}Calculate pricing and estimated delivery for a standard order
Order data
object (types.NullInt64) | |
required | object Delivery type |
required | Array of objects (types.PointFull) |
| is_business | boolean |
| is_integration | boolean |
| is_market | boolean |
| is_promotion | boolean |
required | Array of objects (types.PointFull) |
| payment_type required | string Enum: "CASH" "CARD" "BALANCE" |
object (types.NullStruct-types_PointFull) | |
| vendor_order_id required | string [ 1 .. 255 ] characters |
{- "card_id": {
- "int64": 0,
- "valid": true
}, - "delivery": {
- "delivery_base_price": 0,
- "door_to_door": true,
- "equipment_id": 0,
- "product_paid": true,
- "send_link": true,
- "time": "string"
}, - "destination": [
- {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
], - "is_business": true,
- "is_integration": true,
- "is_market": true,
- "is_promotion": true,
- "origin": [
- {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
], - "payment_type": "CASH",
- "return_address": {
- "valid": true,
- "value": {
- "address": "string",
- "apartment": "string",
- "arrived_at": "string",
- "client": {
- "email": "string",
- "id": 0,
- "name": "string",
- "phone": "string"
}, - "closed_point_at_distance": 0,
- "comment": "string",
- "comment_for_shop": "string",
- "door_phone": "string",
- "entrance": "string",
- "eta": "string",
- "floor": 0,
- "handed_over_at": "string",
- "headed_towards": true,
- "id": "string",
- "initial_eta": "string",
- "location": {
- "lat": 0,
- "long": 0
}, - "order": 0,
- "products": {
- "description": {
- "string": "string",
- "valid": true
}, - "id": {
- "string": "string",
- "valid": true
}, - "items": [
- {
- "height": 0,
- "length": 0,
- "name": "string",
- "order_id": 0,
- "photo": "string",
- "price_per_unit": 0,
- "quantity": 0,
- "volume": 0,
- "volume_unit": "string",
- "weight": 0,
- "width": 0
}
], - "type_id": 0
}, - "return_arrived_at": "string",
- "returned_at": "string",
- "skipped_at": "string"
}
}, - "vendor_order_id": "string"
}{- "additional_fixed_price": 0,
- "dead_head_distance": 0,
- "eta_to_del": {
- "string": "string",
- "valid": true
}, - "eta_to_pu": {
- "string": "string",
- "valid": true
}, - "evaluated_stage": 0,
- "order_distance": 0,
- "out_of_zone_points": [
- 0
], - "total_delivery_price": 0
}Cancel an existing order
| order_id required | integer Order ID |
Cancellation reason
| cancel_transactions | boolean |
| id | integer |
| reason | string |
| reorder | boolean |
{- "cancel_transactions": true,
- "id": 0,
- "reason": "string",
- "reorder": true
}{- "message": "error.message.key"
}