Check products images upload
Check images upload by products IDs
Function CheckProductsImagesUpload(Val ClientID, Val APIKey, Val ProductsID) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
ClientID | --clientid | String | ✔ | Client identifier |
APIKey | --apikey | String | ✔ | API key |
ProductsID | --products | String, Number, Array of String, Number | ✔ | Product IDs to be inspected |
Returns: Map Of KeyAndValue - serialized JSON response from Ozon Seller API
tip
Method at API documentation: post /v2/product/pictures/info
1C:Enterprise/OneScript code example
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
ProductID = "2710250299";
Result = OPI_Ozon.CheckProductsImagesUpload(ClientID, APIKey, ProductID);
- Bash
- CMD/Bat
oint ozon CheckProductsImagesUpload \
--clientid "***" \
--apikey "***" \
--products 2715190545
oint ozon CheckProductsImagesUpload ^
--clientid "***" ^
--apikey "***" ^
--products 2715190545
Result
{
"items": [
{
"product_id": 2715190545,
"primary_photo": [],
"photo": [
"https://hut.openintegrations.dev/test_data/picture.jpg",
"https://hut.openintegrations.dev/test_data/picture2.jpg"
],
"color_photo": [],
"photo_360": [],
"errors": []
}
]
}