Skip to main content

Archive products

Moves selected items to the archive

Function ArchiveProducts(Val ClientID, Val APIKey, Val ProductsID) Export

ParameterCLI optionTypeDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key
ProductsID--productsString, Number, Array of String, NumberProduct IDs for archiving

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


tip

You can pass up to 100 identifiers at a time

Method at API documentation: post /v1/product/archive


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

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

Result
{
"result": true
}