Skip to main content

Create barcodes

Generates new barcodes for products

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

ParameterCLI optionTypeDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key
ProductsID--productidsString, Array of StringProducts IDs for barcodes creating

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


tip

You can create barcodes for a maximum of 100 products per request

From one merchant account, you can use the method no more than 20 times per minute

Method at API documentation: post /v1/barcode/generate


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

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

Result
{
"errors": []
}