Skip to main content

Get related SKUs

Gets a single SKU from the old SKU FBS and SKU FBO identifiers

Function GetRelatedSKUs(Val ClientID, Val APIKey, Val SKU) Export

ParameterCLI optionTypeRequiredDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key
SKU--skuNumber, Array Of NumberProducts identifiers in the Ozon system (SKU)

Returns: Map Of KeyAndValue - serialized JSON response from Ozon Seller API


tip

The response will contain all SKUs associated with the passed SKUs. The method can process any SKU, even hidden or deleted.

Send up to 200 SKUs in a single request.

Method at API documentation: post /v1/product/related-sku/get


1C:Enterprise/OneScript code example
    ClientID = "2128753";
APIKey = "7cc90d26-33e4-499b...";
SKU = 1626044001;

Result = OPI_Ozon.GetRelatedSKUs(ClientID, APIKey, SKU);
    oint ozon GetRelatedSKUs \
--clientid "***" \
--apikey "***" \
--sku 1626044001
Result
{
"items": [
{
"delivery_schema": "SDS",
"sku": 1626044001,
"product_id": 1108702494,
"availability": "AVAILABLE",
"deleted_at": null
}
],
"errors": []
}