Skip to main content

Update products articles

Modifies articles of existing products

Function UpdateProductsArticles(Val ClientID, Val APIKey, Val ArticlesMap) Export

ParameterCLI optionTypeDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key
ArticlesMap--offersMap Of KeyAndValueArticles: Key > current, Value > new

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


tip

Method at API documentation: post /v1/product/update/offer-id


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

ArticlesMap = New Map;
ArticlesMap.Insert("143210609", "143210612");

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

Result
{
"errors": []
}