POST /product/import
Импорт товаров
Запрос
Импортируемые товары
Тело запроса (объект ProductImport )
Поле | Описание | Тип | Обязательное |
---|---|---|---|
products |
Список товаров |
Массив ProductTiny | |
store |
Название магазина, куда нужно импортировать товары |
string |
Пример запроса
application/json, text/json
Sample:
{ "products": [ { "id": "sample string 1", "pid": "sample string 2", "n": "sample string 3", "price": 1.1, "costPrice": 1.1, "g": true, "a": "sample string 5", "labels": [ "sample string 1", "sample string 2" ] }, { "id": "sample string 1", "pid": "sample string 2", "n": "sample string 3", "price": 1.1, "costPrice": 1.1, "g": true, "a": "sample string 5", "labels": [ "sample string 1", "sample string 2" ] } ], "store": "sample string 1" }