Skip to main content

Bind barcodes

Binds barcodes to products

Function BindBarcodes(Val ClientID, Val APIKey, Val BarcodesMap) Export

ParameterCLI optionTypeDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key
BarcodesMap--barcodesMap Of KeyAndValueKey > product SKU, Value > barcode

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


tip

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


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

BarcodesMap = New Map;
BarcodesMap.Insert(1626044001, "112233");

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

Result
{
"errors": [
{
"barcode": "112233",
"code": "item_not_found",
"error": "sellerID of item 1626044001 is not 2128753",
"sku": 1626044001
}
]
}