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 optionTypeDescription
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


Code example
    ClientID = "2128753";
APIKey = "7cc90d26-33e4-499b...";
SKU = 1626044001;

Result = OPI_Ozon.GetRelatedSKUs(ClientID, APIKey, SKU);
CLI command example
    
oint ozon GetRelatedSKUs --clientid "2128753" --apikey "7cc90d26-33e4-499b..." --sku %sku%

Result
{
"items": [
{
"delivery_schema": "SDS",
"sku": 1626044001,
"product_id": 1108702494,
"availability": "AVAILABLE",
"deleted_at": null
}
],
"errors": []
}