curl --request POST \
--url https://seller-api.teez.kz/api/seller/v1/products/import \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"products": [
{
"shopId": 123,
"productId": 123,
"categoryId": 123,
"brandId": 123,
"isLocalMade": true,
"name": {
"rus": "<string>",
"kaz": "<string>"
},
"description": {
"rus": "<string>",
"kaz": "<string>"
},
"vat": 123,
"attributes": [
{
"code": "<string>",
"valueCodes": [
"<string>"
]
}
],
"skus": [
{
"skuId": 123,
"attributeValueCodes": [
"<string>"
],
"price": 123,
"barcode": "<string>",
"photos": [
{
"mediaFile": "<string>",
"order": 123
}
]
}
]
}
]
}
'