/v1/pickup-option-details
Запрос на получение детальной информации о точке самовывоза.
По точке самовывоза (pickupPointId
) и корзине товаров бэкенд магазина возвращает
детальную информацию о точке самовывоза.
Request
POST
https://example.merchant.ru/v1/pickup-option-details
Production
POST
https://sandbox.example.merchant.ru/v1/pickup-option-details
Sandbox
Body
application/json
{
"cart": {
"cartId": "string",
"coupons": [
{
"description": "string",
"status": "VALID",
"value": "string"
}
],
"discounts": [
{
"amount": "123.45",
"description": "string",
"discountId": "string"
}
],
"externalId": "string",
"items": [
{
"description": "string",
"discountedUnitPrice": "123.45",
"features": {
"pointsDisabled": false
},
"measurements": {
"height": 0,
"length": 0,
"weight": 0,
"width": 0
},
"pointsAmount": "123.45",
"productId": "string",
"quantity": {
"available": "123.45",
"count": "123.45"
},
"receipt": {
"agent": {
"agentType": 1,
"operation": "string",
"paymentsOperator": {
"phones": [
"string"
]
},
"phones": [
"string"
],
"transferOperator": {
"address": "string",
"inn": "string",
"name": "string",
"phones": [
"string"
]
}
},
"excise": "123.45",
"markQuantity": {
"denominator": 0,
"numerator": 0
},
"measure": 0,
"paymentMethodType": 1,
"paymentSubjectType": 1,
"productCode": "string",
"supplier": {
"inn": "string",
"name": "string",
"phones": [
"string"
]
},
"tax": 1,
"title": "string"
},
"subtotal": "123.45",
"title": "string",
"total": "123.45",
"type": "PHYSICAL",
"unitPrice": "123.45"
}
],
"measurements": {
"height": 0,
"length": 0,
"weight": 0,
"width": 0
},
"total": {
"amount": "123.45",
"pointsAmount": "123.45"
}
},
"currencyCode": "string",
"merchantId": "c3073b9d-edd0-49f2-a28d-b7ded8ff9a8b",
"metadata": "string",
"pickupPointId": "string"
}
Name |
Description |
cart* |
Type: CartWithoutFinalPrice Корзина c ценами, размером и весом товаров |
currencyCode* |
Type: string |
merchantId* |
Type: string<uuid> |
pickupPointId* |
Type: string |
metadata |
Type: string |
CartWithoutFinalPrice
Name |
Description |
cartId |
Type: string Внутренний идентификатор корзины Яндекс Пэй. Бэкенд магазина должен использовать этот параметр как идентификатор корзины покупателя и как ключ идемпотентности для запроса |
coupons |
Type: Coupon[] Купоны, применённые к корзине |
discounts |
Type: Discount[] Скидки, применённые к корзине |
externalId |
Type: string Переданный продавцом идентификатор корзины |
items |
Type: CartItemWithoutFinalPrice[] |
measurements |
Type: Measurements |
total |
Type: CartTotal Итоговая стоимость корзины, которая пойдет в оплату |
Coupon
Name |
Description |
value* |
Type: string Код купона |
description |
Type: string Описание. Например, "Скидка 3%" |
status |
Type: string Enum: |
Discount
Name |
Description |
amount* |
Type: string<double> Сумма скидки Example: |
description* |
Type: string Текстовое описание |
discountId* |
Type: string Идентификатор скидки в системе мерчанта |
CartItemWithoutFinalPrice
Name |
Description |
productId* |
Type: string Id товара в системе продавца. В параметрах запроса каждый идентификатор товара |
quantity* |
Type: ItemQuantity Количество товара в заказе |
description |
Type: string Описание товара |
discountedUnitPrice |
Type: string<double> Цена за единицу товара с учётом скидок на позицию Example: |
features |
Type: CartItemFeatures Промо параметры товара |
measurements |
Type: Measurements Размеры и вес товара. Обязательно для товара типа |
pointsAmount |
Type: string<double> Количество баллов Плюса Поле только для чтения. Переданные значения будут проигнорированы. Example: |
receipt |
Type: ItemReceipt Данные для формирования чека |
subtotal |
Type: string<double> Суммарная цена за позицию без учета скидок Example: |
title |
Type: string Наименование товара |
total |
Type: string<double> Суммарная цена за позицию с учётом скидок на позицию Example: |
type |
Type: string Тип товара. Важен для интеграции с доставками Default: Enum: |
unitPrice |
Type: string<double> Полная цена за единицу товара без учетка скидки Example: |
Measurements
Name |
Description |
height* |
Type: number<float> Высота, в метрах |
length* |
Type: number<float> Длина, в метрах |
weight* |
Type: number<float> Вес, в килограммах |
width* |
Type: number<float> Ширина, в метрах |
CartTotal
Name |
Description |
amount* |
Type: string<double> Стоимость корзины с учетом всех скидок. Example: |
pointsAmount |
Type: string<double> Количество баллов Плюса Поле только для чтения. Переданные значения будут проигнорированы. Example: |
ItemQuantity
Name |
Description |
count* |
Type: string<double> Количество товара в заказе Example: |
available |
Type: string<double> Максимально доступное количество товара Example: |
CartItemFeatures
Name |
Description |
pointsDisabled |
Type: boolean Не распределять баллы Плюса. Используется только при создании заказа. Если это поле не указано, то баллы будут распределены на товар Default: |
ItemReceipt
Name |
Description |
tax* |
Type: integer Описание значений: Ссылка Enum: |
agent |
Type: Agent |
excise |
Type: string<double> Не должно содержать больше двух знаков после запятой. Например: 1.12, 5.1, 10, 11.00 . Example: |
markQuantity |
Type: MarkQuantity |
measure |
Type: integer Описание значений: Ссылка Enum: |
paymentMethodType |
Type: integer Описание значений: Ссылка Enum: |
paymentSubjectType |
Type: integer Описание значений: Ссылка Enum: |
productCode |
Type: string<base64> Код товара (base64 кодированный массив от 1 до 32 байт) |
supplier |
Type: Supplier |
title |
Type: string |
Agent
Name |
Description |
agentType* |
Type: integer Признак агента по предмету расчёта. См. значения Enum: |
operation |
Type: string |
paymentsOperator |
Type: PaymentsOperator |
phones |
Type: string[] |
transferOperator |
Type: TransferOperator |
MarkQuantity
Name |
Description |
denominator* |
Type: integer<int32> |
numerator* |
Type: integer<int32> |
Supplier
Name |
Description |
inn |
Type: string |
name |
Type: string |
phones |
Type: string[] |
PaymentsOperator
Name |
Description |
phones |
Type: string[] |
TransferOperator
Name |
Description |
address |
Type: string |
inn |
Type: string |
name |
Type: string |
phones |
Type: string[] |
Responses
200 OK
success
Body
application/json
{
"data": {
"pickupOption": {
"address": "string",
"allowedPaymentMethods": [
"CARD"
],
"amount": "123.45",
"description": "string",
"fromDate": "string",
"location": {
"latitude": 0,
"longitude": 0
},
"phones": [
"string"
],
"pickupPointId": "string",
"provider": "YANDEX_MARKET",
"receipt": {
"agent": {
"agentType": 1,
"operation": "string",
"paymentsOperator": {
"phones": [
"string"
]
},
"phones": [
"string"
],
"transferOperator": {
"address": "string",
"inn": "string",
"name": "string",
"phones": [
"string"
]
}
},
"excise": "123.45",
"markQuantity": {
"denominator": 0,
"numerator": 0
},
"measure": 0,
"paymentMethodType": 1,
"paymentSubjectType": 1,
"productCode": "string",
"supplier": {
"inn": "string",
"name": "string",
"phones": [
"string"
]
},
"tax": 1,
"title": "string"
},
"schedule": [
{
"fromTime": "string",
"label": "string",
"toTime": "string"
}
],
"storagePeriod": 0,
"title": "string",
"toDate": "string"
}
},
"status": "string"
}
Name |
Description |
data* |
|
status* |
Type: string |
MerchantPickupOptionDetailsResponseData
Name |
Description |
pickupOption* |
Type: PickupOptionDetails |
PickupOptionDetails
Name |
Description |
address* |
Type: string Адрес в виде строки |
amount* |
Type: string<double> Стоимость доставки в точку Example: |
location* |
Type: Location |
pickupPointId* |
Type: string Уникальный id точки самовывоза в системе продавца |
title* |
Type: string Название точки самовывоза |
allowedPaymentMethods |
Type: string[] Индивидуальные методы оплаты для выбранного способа самовывоза. Доступные методы оплаты заказа при выбранном способе самовывоза. Этот параметр нужно использовать, если нужно ограничить методы оплаты, указанные в Enum: |
description |
Type: string Дополнительное описание |
fromDate |
Type: string<date> YYYY-MM-DD. Ближайшая возможная дата доставки |
phones |
Type: string[] Телефоны для связи |
provider |
Type: string Тип точки вывоза. Enum: |
receipt |
Type: ItemReceipt |
schedule |
Type: PickupSchedule[] График работы точки |
storagePeriod |
Type: integer<int32> Опционально. Срок хранения товара в точке самовывоза в днях |
toDate |
Type: string<date> YYYY-MM-DD. Самая поздняя дата доставки |
Location
Name |
Description |
latitude* |
Type: number<float> |
longitude* |
Type: number<float> |
PickupSchedule
Name |
Description |
fromTime* |
Type: string HH:mm, "08:00" |
label* |
Type: string Например, "пн-пт" |
toTime* |
Type: string HH:mm, "20:00" |
400 Bad Request
bad request
Body
application/json
{
"reason": "string",
"reasonCode": "FORBIDDEN",
"status": "fail"
}
Name |
Description |
reasonCode* |
Type: string Enum: |
reason |
Type: string |
status |
Type: string Default: |
No longer supported, please use an alternative and newer version.