Skip to main content

Get product description

Get product description by IDs

Function GetProductDescription(Val ClientID, Val APIKey, Val ProductID = 0, Val Article = "") Export

ParameterCLI optionTypeDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key
ProductID--productidString, NumberProduct identifier
Article--offeridString, NumberItem identifier in the vendor's system (Article)

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


tip

Method at API documentation: post /v1/product/info/description


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

Result = OPI_Ozon.GetProductDescription(ClientID, APIKey, , Article);
CLI command example
    
oint ozon GetProductDescription --clientid "2128753" --apikey "7cc90d26-33e4-499b..." --productid %productid% --offerid %offerid%

Result
{
"result": {
"id": 1111588191,
"offer_id": "143210608",
"name": "Protective film set for X3 NFC. Dark cotton",
"description": ""
}
}