Skip to main content

Get product subscribers count

Gets the number of users who clicked Know about arrival button on the product page

Function GetProductSubscribersCount(Val ClientID, Val APIKey, Val SKU) Export

ParameterCLI optionTypeDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key
SKU--skuNumber, Array Of NumberProducts identifiers in the Ozon system (SKU)

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


tip

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


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

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

Result
{
"result": [
{
"sku": 1626044001,
"count": 0
}
]
}