---
metadata:
  - name: generator
    content: Diplodoc Platform v5.48.2
alternate:
  - https://yandex.uz/support/split-business/en/custom/backend/yandex-pay-api/order/merchant_v1_submit-post.md
  - https://yandex.uz/support/split-business/ru/custom/backend/yandex-pay-api/order/merchant_v1_submit-post.md
  - https://yandex.uz/support/split-business/uz/custom/backend/yandex-pay-api/order/merchant_v1_submit-post.md
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.uz/support/split-business/ru/llms.txt

<div class="openapi">

# /v1/orders/{order_id}/submit

<!-- markdownlint-disable-file -->

Запрос на подтверждение оплаты для Сплита с оплатой при получении.

Доступно для платежей в статусе `CONFIRMED`. При успешном результате запроса статус изменится на `CAPTURED`.

Если состав корзины на этапе подтверждения заказа отличается от состава корзины на этапе оформления,
передайте новые значения для полей `cart` и `orderAmount`.

## Request

<div class="openapi__requests">

<div class="openapi__request__wrapper" style="--method: var(--dc-openapi-methods-post);margin-bottom: 12px">

<div class="openapi__request">

POST {.openapi__method}
```text translate=no
https://pay.yandex.uz/api/merchant/v1/orders/{order_id}/submit
```

</div>

Production

</div>

<div class="openapi__request__wrapper" style="--method: var(--dc-openapi-methods-post);margin-bottom: 12px">

<div class="openapi__request">

POST {.openapi__method}
```text translate=no
https://sandbox.pay.yandex.uz/api/merchant/v1/orders/{order_id}/submit
```

</div>

Sandbox

</div>

</div>

### Path parameters

#|
|| **Name** | **Description** ||
||

_order_id_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

ID заказа на стороне продавца, который был передан в ответе на /orders.

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} ``
{.table-cell}
||
|#{.json-schema-properties}

<div class="openapi-entity">

### Body

{% cut "application/json" %}

```json translate=no
{
  "cart": {
    "cartId": "example",
    "coupons": [
      {
        "description": "Скидка 3%",
        "status": "VALID",
        "value": "example"
      }
    ],
    "discounts": [
      {
        "amount": "123.45",
        "description": "example",
        "discountId": "example"
      }
    ],
    "externalId": "example",
    "items": [
      {
        "description": "example",
        "discountedUnitPrice": "123.45",
        "features": null,
        "measurements": null,
        "productId": "example",
        "quantity": null,
        "skuId": "example",
        "subtotal": "123.45",
        "title": "example",
        "total": "123.45",
        "type": "UNSPECIFIED",
        "unitPrice": "123.45"
      }
    ],
    "measurements": {
      "height": 0.5,
      "length": 0.5,
      "weight": 0.5,
      "width": 0.5
    },
    "total": {
      "amount": "123.45"
    }
  },
  "externalOperationId": "example",
  "orderAmount": "123.45"
}
```

{% endcut %}

#|
|| **Name** | **Description** ||
||

_externalOperationId_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

Идентификатор операции в системе продавца

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_cart_{.json-schema-reset .json-schema-property}
{.table-cell}|
{% cut "**All of 1 type**" %}{.json-schema-combinators data-marker=and}

- **Type**: [CartWithRequiredTotalWithoutFinalPrice](#entity-CartWithRequiredTotalWithoutFinalPrice)

  {% cut "**Example**" %}{.json-schema-example}

  ```json translate=no
  {
    "cartId": "example",
    "coupons": [
      {
        "description": "Скидка 3%",
        "status": "VALID",
        "value": "example"
      }
    ],
    "discounts": [
      {
        "amount": "123.45",
        "description": "example",
        "discountId": "example"
      }
    ],
    "externalId": "example",
    "items": [
      {
        "description": "example",
        "discountedUnitPrice": "123.45",
        "features": {
          "pointsDisabled": false,
          "tariffModifier": "VERY_LOW"
        },
        "measurements": {
          "height": 0.5,
          "length": 0.5,
          "weight": 0.5,
          "width": 0.5
        },
        "productId": "example",
        "quantity": {
          "available": "123.45",
          "count": "123.45"
        },
        "skuId": "example",
        "subtotal": "123.45",
        "title": "example",
        "total": "123.45",
        "type": "UNSPECIFIED",
        "unitPrice": "123.45"
      }
    ],
    "measurements": null,
    "total": {
      "amount": "123.45"
    }
  }
  ```

  {% endcut %}

{% endcut %}

Итоговая корзина

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "cartId": "example",
  "coupons": [
    {
      "description": "Скидка 3%",
      "status": "VALID",
      "value": "example"
    }
  ],
  "discounts": [
    {
      "amount": "123.45",
      "description": "example",
      "discountId": "example"
    }
  ],
  "externalId": "example",
  "items": [
    {
      "description": "example",
      "discountedUnitPrice": "123.45",
      "features": null,
      "measurements": null,
      "productId": "example",
      "quantity": null,
      "skuId": "example",
      "subtotal": "123.45",
      "title": "example",
      "total": "123.45",
      "type": "UNSPECIFIED",
      "unitPrice": "123.45"
    }
  ],
  "measurements": null,
  "total": {
    "amount": "123.45"
  }
}
```

{% endcut %}
{.table-cell}
||
||

_orderAmount_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Итоговая сумма заказа. Равна `cart.total.amount`.

Является обязательным полем, если передается `cart`.

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
|#{.json-schema-properties}

</div>

<div class="openapi-entity">

### Coupon {#entity-Coupon}

#|
|| **Name** | **Description** ||
||

_value_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

Код купона

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_description_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Описание купона

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `Скидка 3%`
{.table-cell}
||
||

_status_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

_Enum:_{.json-schema-reset .json-schema-value} `VALID`, `INVALID`, `EXPIRED`, `null`

_Example:_{.json-schema-reset .json-schema-example} `VALID`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "description": "Скидка 3%",
  "status": "VALID",
  "value": "example"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### Discount {#entity-Discount}

#|
|| **Name** | **Description** ||
||

_amount_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string&lt;double&gt;

Сумма скидки

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_description_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

Текстовое описание

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_discountId_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

Идентификатор скидки в системе продавца

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "amount": "123.45",
  "description": "example",
  "discountId": "example"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### CartItemFeatures {#entity-CartItemFeatures}

#|
|| **Name** | **Description** ||
||

_pointsDisabled_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: boolean

Недоступно в Узбекистане.

_Default:_{.json-schema-reset .json-schema-value} `false`
{.table-cell}
||
||

_tariffModifier_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Модификатор тарифа для расчета комиссии. Определяет, какой тариф будет применяться при расчете комиссии за обработку позиции в корзине.

_Enum:_{.json-schema-reset .json-schema-value} `VERY_LOW`, `LOW`, `MEDIUM`, `HIGH`, `VERY_HIGH`, `null`

_Example:_{.json-schema-reset .json-schema-example} `VERY_LOW`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "pointsDisabled": false,
  "tariffModifier": "VERY_LOW"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### Measurements {#entity-Measurements}

#|
|| **Name** | **Description** ||
||

_height_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: number

Высота, в метрах
{.table-cell}
||
||

_length_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: number

Длина, в метрах
{.table-cell}
||
||

_weight_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: number

Вес, в килограммах
{.table-cell}
||
||

_width_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: number

Ширина, в метрах
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "height": 0.5,
  "length": 0.5,
  "weight": 0.5,
  "width": 0.5
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### ItemQuantity {#entity-ItemQuantity}

#|
|| **Name** | **Description** ||
||

_count_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string&lt;double&gt;

Количество товара в заказе

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_available_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Максимально доступное количество товара

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "available": "123.45",
  "count": "123.45"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### CartItemWithoutFinalPriceCamelCase {#entity-CartItemWithoutFinalPriceCamelCase}

#|
|| **Name** | **Description** ||
||

_productId_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

ID товара в системе продавца. В параметрах запроса каждый идентификатор товара `productId` должен быть уникальным

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_quantity_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
{% cut "**All of 1 type**" %}{.json-schema-combinators data-marker=and}

- **Type**: [ItemQuantity](#entity-ItemQuantity)

  {% cut "**Example**" %}{.json-schema-example}

  ```json translate=no
  {
    "available": "123.45",
    "count": "123.45"
  }
  ```

  {% endcut %}

{% endcut %}

Количество товара в заказе

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "available": "123.45",
  "count": "123.45"
}
```

{% endcut %}
{.table-cell}
||
||

_description_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Описание товара

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_discountedUnitPrice_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Цена за единицу товара с учетом скидок на позицию

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_features_{.json-schema-reset .json-schema-property}
{.table-cell}|
{% cut "**All of 1 type**" %}{.json-schema-combinators data-marker=and}

- **Type**: [CartItemFeatures](#entity-CartItemFeatures)

  {% cut "**Example**" %}{.json-schema-example}

  ```json translate=no
  {
    "pointsDisabled": false,
    "tariffModifier": "VERY_LOW"
  }
  ```

  {% endcut %}

{% endcut %}

Промо параметры товара

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "pointsDisabled": false,
  "tariffModifier": "VERY_LOW"
}
```

{% endcut %}
{.table-cell}
||
||

_measurements_{.json-schema-reset .json-schema-property}
{.table-cell}|
{% cut "**All of 1 type**" %}{.json-schema-combinators data-marker=and}

- **Type**: [Measurements](#entity-Measurements)

  {% cut "**Example**" %}{.json-schema-example}

  ```json translate=no
  {
    "height": 0.5,
    "length": 0.5,
    "weight": 0.5,
    "width": 0.5
  }
  ```

  {% endcut %}

{% endcut %}

Размеры и вес товара. Обязательно для товара типа `PHYSICAL`

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "height": 0.5,
  "length": 0.5,
  "weight": 0.5,
  "width": 0.5
}
```

{% endcut %}
{.table-cell}
||
||

_skuId_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Уникальный ID, который описывает единицу ассортимента. Необходим для применения индивидуального тарифа.

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_subtotal_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Суммарная цена за позицию без учета скидок

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_title_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Наименование товара

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_total_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Суммарная цена за позицию с учетом скидок на позицию

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_type_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Тип товара. Важен для интеграции с доставками

_Default:_{.json-schema-reset .json-schema-value} `UNSPECIFIED`

_Enum:_{.json-schema-reset .json-schema-value} `PHYSICAL`, `DIGITAL`, `UNSPECIFIED`
{.table-cell}
||
||

_unitPrice_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Полная цена за единицу товара без учета скидки

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "description": "example",
  "discountedUnitPrice": "123.45",
  "features": {
    "pointsDisabled": false,
    "tariffModifier": "VERY_LOW"
  },
  "measurements": {
    "height": 0.5,
    "length": 0.5,
    "weight": 0.5,
    "width": 0.5
  },
  "productId": "example",
  "quantity": {
    "available": "123.45",
    "count": "123.45"
  },
  "skuId": "example",
  "subtotal": "123.45",
  "title": "example",
  "total": "123.45",
  "type": "UNSPECIFIED",
  "unitPrice": "123.45"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### CartTotal {#entity-CartTotal}

#|
|| **Name** | **Description** ||
||

_amount_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string&lt;double&gt;

Стоимость корзины с учетом всех скидок.

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "amount": "123.45"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### CartWithRequiredTotalWithoutFinalPrice {#entity-CartWithRequiredTotalWithoutFinalPrice}

#|
|| **Name** | **Description** ||
||

_items_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: [CartItemWithoutFinalPriceCamelCase](#entity-CartItemWithoutFinalPriceCamelCase)[]

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  {
    "description": "example",
    "discountedUnitPrice": "123.45",
    "features": {
      "pointsDisabled": false,
      "tariffModifier": "VERY_LOW"
    },
    "measurements": {
      "height": 0.5,
      "length": 0.5,
      "weight": 0.5,
      "width": 0.5
    },
    "productId": "example",
    "quantity": {
      "available": "123.45",
      "count": "123.45"
    },
    "skuId": "example",
    "subtotal": "123.45",
    "title": "example",
    "total": "123.45",
    "type": "UNSPECIFIED",
    "unitPrice": "123.45"
  }
]
```

{% endcut %}
{.table-cell}
||
||

_total_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: [CartTotal](#entity-CartTotal)

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "amount": "123.45"
}
```

{% endcut %}
{.table-cell}
||
||

_cartId_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Идентификатор корзины на стороне Яндекса

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_coupons_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [Coupon](#entity-Coupon)[]

Купоны, примененные к корзине

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  {
    "description": "Скидка 3%",
    "status": "VALID",
    "value": "example"
  }
]
```

{% endcut %}
{.table-cell}
||
||

_discounts_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [Discount](#entity-Discount)[]

Скидки, примененные к корзине

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  {
    "amount": "123.45",
    "description": "example",
    "discountId": "example"
  }
]
```

{% endcut %}
{.table-cell}
||
||

_externalId_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Идентификатор корзины на стороне продавца

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_measurements_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [Measurements](#entity-Measurements)

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "height": 0.5,
  "length": 0.5,
  "weight": 0.5,
  "width": 0.5
}
```

{% endcut %}
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "cartId": "example",
  "coupons": [
    {
      "description": "Скидка 3%",
      "status": "VALID",
      "value": "example"
    }
  ],
  "discounts": [
    {
      "amount": "123.45",
      "description": "example",
      "discountId": "example"
    }
  ],
  "externalId": "example",
  "items": [
    {
      "description": "example",
      "discountedUnitPrice": "123.45",
      "features": {
        "pointsDisabled": false,
        "tariffModifier": "VERY_LOW"
      },
      "measurements": {
        "height": 0.5,
        "length": 0.5,
        "weight": 0.5,
        "width": 0.5
      },
      "productId": "example",
      "quantity": {
        "available": "123.45",
        "count": "123.45"
      },
      "skuId": "example",
      "subtotal": "123.45",
      "title": "example",
      "total": "123.45",
      "type": "UNSPECIFIED",
      "unitPrice": "123.45"
    }
  ],
  "measurements": null,
  "total": {
    "amount": "123.45"
  }
}
```

{% endcut %}

</div>

## Responses

<div class="openapi__response__code__200">

## 200 OK

<div class="openapi-entity">

### Body

{% cut "application/json" %}

```json translate=no
{
  "code": 200,
  "data": {
    "operation": {
      "amount": "123.45",
      "created": "2025-01-01T00:00:00Z",
      "externalOperationId": "example",
      "operationId": "123e4567-e89b-12d3-a456-426614174000",
      "operationType": "AUTHORIZE",
      "orderId": "example",
      "params": {},
      "pointsAmount": "123.45",
      "reason": "example",
      "status": "PENDING",
      "updated": "2025-01-01T00:00:00Z"
    }
  },
  "status": "success"
}
```

{% endcut %}

#|
|| **Name** | **Description** ||
||

_code_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: unknown

_Default:_{.json-schema-reset .json-schema-value} `200`
{.table-cell}
||
||

_data_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [OperationResponseData](#entity-OperationResponseData)

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "operation": {
    "amount": "123.45",
    "created": "2025-01-01T00:00:00Z",
    "externalOperationId": "example",
    "operationId": "123e4567-e89b-12d3-a456-426614174000",
    "operationType": "AUTHORIZE",
    "orderId": "example",
    "params": {},
    "pointsAmount": "123.45",
    "reason": "example",
    "status": "PENDING",
    "updated": "2025-01-01T00:00:00Z"
  }
}
```

{% endcut %}
{.table-cell}
||
||

_status_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

_Default:_{.json-schema-reset .json-schema-value} `success`

_Const:_{.json-schema-reset .json-schema-value} `success`
{.table-cell}
||
|#{.json-schema-properties}

</div>

<div class="openapi-entity">

### CartItemWithoutFinalPriceCamelCase {#entity-CartItemWithoutFinalPriceCamelCase1}

#|
|| **Name** | **Description** ||
||

_productId_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

ID товара в системе продавца. В параметрах запроса каждый идентификатор товара `productId` должен быть уникальным

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_quantity_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
{% cut "**All of 1 type**" %}{.json-schema-combinators data-marker=and}

- **Type**: [ItemQuantity](#entity-ItemQuantity)

  {% cut "**Example**" %}{.json-schema-example}

  ```json translate=no
  {
    "available": "123.45",
    "count": "123.45"
  }
  ```

  {% endcut %}

{% endcut %}

Количество товара в заказе

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "available": "123.45",
  "count": "123.45"
}
```

{% endcut %}
{.table-cell}
||
||

_description_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Описание товара

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_discountedUnitPrice_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Цена за единицу товара с учетом скидок на позицию

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_features_{.json-schema-reset .json-schema-property}
{.table-cell}|
{% cut "**All of 1 type**" %}{.json-schema-combinators data-marker=and}

- **Type**: [CartItemFeatures](#entity-CartItemFeatures)

  {% cut "**Example**" %}{.json-schema-example}

  ```json translate=no
  {
    "pointsDisabled": false,
    "tariffModifier": "VERY_LOW"
  }
  ```

  {% endcut %}

{% endcut %}

Промо параметры товара

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "pointsDisabled": false,
  "tariffModifier": "VERY_LOW"
}
```

{% endcut %}
{.table-cell}
||
||

_measurements_{.json-schema-reset .json-schema-property}
{.table-cell}|
{% cut "**All of 1 type**" %}{.json-schema-combinators data-marker=and}

- **Type**: [Measurements](#entity-Measurements)

  {% cut "**Example**" %}{.json-schema-example}

  ```json translate=no
  {
    "height": 0.5,
    "length": 0.5,
    "weight": 0.5,
    "width": 0.5
  }
  ```

  {% endcut %}

{% endcut %}

Размеры и вес товара. Обязательно для товара типа `PHYSICAL`

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "height": 0.5,
  "length": 0.5,
  "weight": 0.5,
  "width": 0.5
}
```

{% endcut %}
{.table-cell}
||
||

_pointsAmount_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Недоступно в Узбекистане.

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_skuId_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Уникальный ID, который описывает единицу ассортимента. Необходим для применения индивидуального тарифа.

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_subtotal_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Суммарная цена за позицию без учета скидок

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_title_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Наименование товара

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_total_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Суммарная цена за позицию с учетом скидок на позицию

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_type_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Тип товара. Важен для интеграции с доставками

_Default:_{.json-schema-reset .json-schema-value} `UNSPECIFIED`

_Enum:_{.json-schema-reset .json-schema-value} `PHYSICAL`, `DIGITAL`, `UNSPECIFIED`
{.table-cell}
||
||

_unitPrice_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Полная цена за единицу товара без учета скидки

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "description": "example",
  "discountedUnitPrice": "123.45",
  "features": {
    "pointsDisabled": false,
    "tariffModifier": "VERY_LOW"
  },
  "measurements": {
    "height": 0.5,
    "length": 0.5,
    "weight": 0.5,
    "width": 0.5
  },
  "pointsAmount": "123.45",
  "productId": "example",
  "quantity": {
    "available": "123.45",
    "count": "123.45"
  },
  "skuId": "example",
  "subtotal": "123.45",
  "title": "example",
  "total": "123.45",
  "type": "UNSPECIFIED",
  "unitPrice": "123.45"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### CartTotal {#entity-CartTotal1}

#|
|| **Name** | **Description** ||
||

_amount_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string&lt;double&gt;

Стоимость корзины с учетом всех скидок.

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_pointsAmount_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Недоступно в Узбекистане.

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "amount": "123.45",
  "pointsAmount": "123.45"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### CartWithRequiredTotalWithoutFinalPrice {#entity-CartWithRequiredTotalWithoutFinalPrice1}

#|
|| **Name** | **Description** ||
||

_items_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: [CartItemWithoutFinalPriceCamelCase](#entity-CartItemWithoutFinalPriceCamelCase1)[]

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  {
    "description": "example",
    "discountedUnitPrice": "123.45",
    "features": {
      "pointsDisabled": false,
      "tariffModifier": "VERY_LOW"
    },
    "measurements": {
      "height": 0.5,
      "length": 0.5,
      "weight": 0.5,
      "width": 0.5
    },
    "pointsAmount": "123.45",
    "productId": "example",
    "quantity": {
      "available": "123.45",
      "count": "123.45"
    },
    "skuId": "example",
    "subtotal": "123.45",
    "title": "example",
    "total": "123.45",
    "type": "UNSPECIFIED",
    "unitPrice": "123.45"
  }
]
```

{% endcut %}
{.table-cell}
||
||

_total_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: [CartTotal](#entity-CartTotal1)

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "amount": "123.45",
  "pointsAmount": "123.45"
}
```

{% endcut %}
{.table-cell}
||
||

_cartId_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Идентификатор корзины на стороне Яндекса

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_coupons_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [Coupon](#entity-Coupon)[]

Купоны, примененные к корзине

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  {
    "description": "Скидка 3%",
    "status": "VALID",
    "value": "example"
  }
]
```

{% endcut %}
{.table-cell}
||
||

_discounts_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [Discount](#entity-Discount)[]

Скидки, примененные к корзине

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
[
  {
    "amount": "123.45",
    "description": "example",
    "discountId": "example"
  }
]
```

{% endcut %}
{.table-cell}
||
||

_externalId_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Идентификатор корзины на стороне продавца

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_measurements_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [Measurements](#entity-Measurements)

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "height": 0.5,
  "length": 0.5,
  "weight": 0.5,
  "width": 0.5
}
```

{% endcut %}
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "cartId": "example",
  "coupons": [
    {
      "description": "Скидка 3%",
      "status": "VALID",
      "value": "example"
    }
  ],
  "discounts": [
    {
      "amount": "123.45",
      "description": "example",
      "discountId": "example"
    }
  ],
  "externalId": "example",
  "items": [
    {
      "description": "example",
      "discountedUnitPrice": "123.45",
      "features": {
        "pointsDisabled": false,
        "tariffModifier": "VERY_LOW"
      },
      "measurements": {
        "height": 0.5,
        "length": 0.5,
        "weight": 0.5,
        "width": 0.5
      },
      "pointsAmount": "123.45",
      "productId": "example",
      "quantity": {
        "available": "123.45",
        "count": "123.45"
      },
      "skuId": "example",
      "subtotal": "123.45",
      "title": "example",
      "total": "123.45",
      "type": "UNSPECIFIED",
      "unitPrice": "123.45"
    }
  ],
  "measurements": null,
  "total": {
    "amount": "123.45",
    "pointsAmount": "123.45"
  }
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### Operation {#entity-Operation}

#|
|| **Name** | **Description** ||
||

_amount_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string&lt;double&gt;

Сумма операции в фиатной валюте

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_operationId_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string&lt;uuid&gt;

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `123e4567-e89b-12d3-a456-426614174000`
{.table-cell}
||
||

_operationType_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

_Enum:_{.json-schema-reset .json-schema-value} `AUTHORIZE`, `BIND_CARD`, `REFUND`, `CAPTURE`, `VOID`, `RECURRING`, `PREPAYMENT`, `SUBMIT`
{.table-cell}
||
||

_orderId_{.json-schema-reset .json-schema-property .json-schema-required}
{.table-cell}|
**Type**: string

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_created_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;date-time&gt;

Дата и время создания операции (ISO 8601)

_Example:_{.json-schema-reset .json-schema-example} `2025-01-01T00:00:00Z`
{.table-cell}
||
||

_externalOperationId_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Идентификатор операции на стороне продавца

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_params_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: object

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{}
```

{% endcut %}
{.table-cell}
||
||

_pointsAmount_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;double&gt;

Недоступно в Узбекистане.

_Example:_{.json-schema-reset .json-schema-example} `123.45`
{.table-cell}
||
||

_reason_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

Причина ошибки

_Max length:_{.json-schema-reset .json-schema-assertion} `2048`

_Example:_{.json-schema-reset .json-schema-example} `example`
{.table-cell}
||
||

_status_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string

_Default:_{.json-schema-reset .json-schema-value} `PENDING`

_Enum:_{.json-schema-reset .json-schema-value} `PENDING`, `SUCCESS`, `FAIL`
{.table-cell}
||
||

_updated_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: string&lt;date-time&gt;

Дата и время обновления операции (ISO 8601)

_Example:_{.json-schema-reset .json-schema-example} `2025-01-01T00:00:00Z`
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "amount": "123.45",
  "created": "2025-01-01T00:00:00Z",
  "externalOperationId": "example",
  "operationId": "123e4567-e89b-12d3-a456-426614174000",
  "operationType": "AUTHORIZE",
  "orderId": "example",
  "params": {},
  "pointsAmount": "123.45",
  "reason": "example",
  "status": "PENDING",
  "updated": "2025-01-01T00:00:00Z"
}
```

{% endcut %}

</div>

<div class="openapi-entity">

### OperationResponseData {#entity-OperationResponseData}

#|
|| **Name** | **Description** ||
||

_operation_{.json-schema-reset .json-schema-property}
{.table-cell}|
**Type**: [Operation](#entity-Operation)

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "amount": "123.45",
  "created": "2025-01-01T00:00:00Z",
  "externalOperationId": "example",
  "operationId": "123e4567-e89b-12d3-a456-426614174000",
  "operationType": "AUTHORIZE",
  "orderId": "example",
  "params": {},
  "pointsAmount": "123.45",
  "reason": "example",
  "status": "PENDING",
  "updated": "2025-01-01T00:00:00Z"
}
```

{% endcut %}
{.table-cell}
||
|#{.json-schema-properties}

{% cut "**Example**" %}{.json-schema-example}

```json translate=no
{
  "operation": {
    "amount": "123.45",
    "created": "2025-01-01T00:00:00Z",
    "externalOperationId": "example",
    "operationId": "123e4567-e89b-12d3-a456-426614174000",
    "operationType": "AUTHORIZE",
    "orderId": "example",
    "params": {},
    "pointsAmount": "123.45",
    "reason": "example",
    "status": "PENDING",
    "updated": "2025-01-01T00:00:00Z"
  }
}
```

{% endcut %}

</div>

</div>

</div>

[*Deprecated]: No longer supported, please use an alternative and newer version.