---
metadata:
  - name: generator
    content: Diplodoc Platform v5.19.6
alternate:
  - https://yandex.ru/dev/sdg-robot/en/faq.md
  - https://yandex.ru/dev/sdg-robot/ru/faq.md
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.ru/dev/sdg-robot/en/llms.txt

# Frequently asked questions

## Creating an order {#create-claim}

{#request-id}

{% cut "What are `external_order_id`, `claim_id`, and `idempotency_key`?" %}

The `external_order_id` parameter is a unique order ID in the partner's system. Each new order must have its own `external_order_id` parameter that is different from previous orders. The value of the `external_order_id` parameter can include letters, digits, and other characters. To ensure that values are unique, we recommend using the `uuid` format and its derivatives.

The `claim_id` parameter is an order ID in the Yandex Autonomous Robots service. It is generated automatically in `uuid` format and is returned when creating an order.

The `idempotency_key` parameter is an idempotency attribute passed as a request parameter. `idempotency_key` is used to execute the same request multiple times, ensuring that the action occurs only once. For example, if you send a request to open a robot lid twice with the same `idempotency_key`, it will open only once.

{% endcut %}

{#size-weight}

{% cut "Do I need to pass the order dimensions and weight?" %}

No, you don't need to pass the order dimensions and weight in the API request. However, you have to consider the robot's restrictions:

{% include notitle [size-weight](_includes/size-weight-a7c0f8559e36.md) %}

{% endcut %}

{#coordinates}

{% cut "How do I pass point coordinates?" %}

You must pass coordinates (the `route_points[].address.coordinates[]` field) in the following order: `[longitude, latitude]`.

{% endcut %}

{#route-points}

{% cut "What is the correct way to specify IDs of points and their visit order?" %}

The `route_points[].point_id` field specifies a unique ID of the point on the route. It can be an arbitrary integer.

The `route_points[].visit_order` field specifies a sequential number of the route point. The order pickup point must be numbered 1. The next point (order delivery point) must be numbered 2, and so on.

If you assume that the recipient may refuse and return the order, please indicate the order return point (if it is not the same as the order pickup point).

{% endcut %}

{#eta}

{% cut "How do I find out the estimated time of arrival (ETA) of the order?" %}

The `performer_info.claim.eta` field returns ETA when the order is created. While the order is being fulfilled, the time is recalculated based on the current traffic conditions and the robot's location. To find out the estimated time of arrival, use the [Order information](https://yandex.ru/dev/sdg-robot/en/ref/claims/info_handler_claims_info_post) request.

{% endcut %}

{#modify}

{% cut "Can I change a previously created order?" %}

No, you can't. You can [cancel](https://yandex.ru/dev/sdg-robot/en/ref/claims/cancel_handler_claims_cancel_post) an order and [create](https://yandex.ru/dev/sdg-robot/en/ref/claims/create_handler_claims_create_post) a new one.

{% endcut %}

<!--{% cut "Как отправитель узнает, за каким заказом приехал робот? Если у робота в кузове несколько заказов, как получатель поймет, какой заказ предназначен для него?" %}

{#order}

????

{% endcut %} -->

## Evaluating an order {#claim-estimation}

{#estimate}

{% cut "How long does it take to evaluate an order?" %}

It takes about 1 second to evaluate an order.

You can find out the order status using the [Order information](https://yandex.ru/dev/sdg-robot/en/ref/claims/info_handler_claims_info_post) method.

{% endcut %}

<!-- {#version}

{% cut "Что такое version — версия заказа?" %}

????

{% endcut %} -->

## Confirming an order {#claim-approval}

{#claim-accept}

{% cut "How do I confirm a created order?" %}

Orders are automatically confirmed by the service immediately after their evaluation. You don't have to send additional requests to confirm orders.

<!-- Для подтверждения заказа нужно, чтобы он успешно прошел процедуру оценки. Оценка происходит автоматически и занимает несколько секунд, после чего заказ переходит в статус `ready_for_approval`, то есть готов к подтверждению. Уточнить статус заказа можно с помощью методов [Информация о заказе](https://yandex.ru/dev/sdg-robot/en/ref/claims/handler_claims_info_post) или [Журнал изменений](https://yandex.ru/dev/sdg-robot/en/ref/claims/handler_claims_journal_post).

Подтвердить заказ можно в течение 10 минут после получения статуса `ready_for_approval`. Если в течение этого срока заказ не подтвержден, он автоматически отклоняется сервисом. -->

{% endcut %}

{#performer-assigned}

{% cut "How is a robot assigned to my order?" %}

A robot is [automatically selected by the service](https://yandex.ru/dev/sdg-robot/en/quick-start.md) based on the current location and status.

If you want, you can manually [select and assign a robot](https://yandex.ru/dev/sdg-robot/en/use-cases.md#select-performer) to fulfill your order. To do this, you first need to find available robots, then select the one you need, and enter its VIN when creating an order.

{% endcut %}

## Tracking an order {#claim-control}

{#claim-info}

{% cut "How can I get information about order status changes?" %}

You can get information about the current order status using the [Order information](https://yandex.ru/dev/sdg-robot/en/ref/claims/info_handler_claims_info_post) or [Events journal](https://yandex.ru/dev/sdg-robot/en/ref/claims/journal_handler_claims_journal_post) method.

A request for [order information](https://yandex.ru/dev/sdg-robot/en/ref/claims/info_handler_claims_info_post) also returns the estimated time of arrival (`performer_info.claim.eta`), and it's recalculated with each request execution based on the current traffic conditions (traffic jams and so on).

{% endcut %}

{#eta}

{% cut "How do I find out if the estimated time of order arrival has changed?" %}

Each time you request [order information](https://yandex.ru/dev/sdg-robot/en/ref/claims/info_handler_claims_info_post), the estimated time of arrival (`eta`) is recalculated based on the current traffic conditions (traffic jams and so on), as well as the robot's location and status.

{% endcut %}

{#rover-inform}

{% cut "How can I get information about the location of the robot that is delivering my order?" %}

Information about the robot is returned in the `courier` section of the response body when you request [order information](https://yandex.ru/dev/sdg-robot/en/ref/claims/info_handler_claims_info_post). The response body also contains the robot's VIN (`vin`).

You can use a VIN to [view all robot events](https://yandex.ru/dev/sdg-robot/en/ref/couriers/journal_handler_couriers_journal_post).

{% endcut %}

## Canceling and returning an order {#cancel-return}

{#cancel}

{% cut "How do I cancel an order?" %}

You can [cancel the order](https://yandex.ru/dev/sdg-robot/en/ref/claims/cancel_handler_claims_cancel_post) until the customer confirms that they received the cargo.

If the cargo isn't yet in the robot, the order status immediately changes to `cancelled`.

If the cargo is already in the robot, but delivery hasn't been [confirmed](https://yandex.ru/dev/sdg-robot/en/ref/claims/confirm_exchange_handler_claims_confirm_exchange_post), order cancellation triggers [cargo return](https://yandex.ru/dev/sdg-robot/en/use-cases.md#cancelled) to the loading point.

{% endcut %}

{#return}

{% cut "How can the recipient return an order?" %}

The customer can only return the order immediately after receiving it, while the robot is still at the delivery point. To return the order, use the [order cancellation](https://yandex.ru/dev/sdg-robot/en/ref/claims/cancel_handler_claims_cancel_post) method: it will trigger [cargo return](https://yandex.ru/dev/sdg-robot/en/use-cases.md#returned) to the loading point.

{% endcut %}

{#incident}

{% cut "If an order is canceled by the service due to a robot malfunction, what happens to the order?" %}

If a robot malfunction occurs and the order can't be delivered, the order is automatically canceled. The [order information](https://yandex.ru/dev/sdg-robot/en/ref/claims/info_handler_claims_info_post) request returns a `cancelled` status in the response.

After that, you need to [contact support](https://yandex.ru/dev/sdg-robot/en/support.md) and discuss possible solutions to the issue.

{% endcut %}

{% include notitle [feedback](_includes/feedback-091b0be5d947.md) %}
