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",
      "g": true,
      "a": "sample string 5"
    },
    {
      "id": "sample string 1",
      "pid": "sample string 2",
      "n": "sample string 3",
      "g": true,
      "a": "sample string 5"
    }
  ],
  "store": "sample string 1"
}