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
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
ClientID | --clientid | String | ✔ | Client identifier |
APIKey | --apikey | String | ✔ | API key |
SKU | --sku | Number, Array Of Number | ✔ | Products 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
1C:Enterprise/OneScript code example
ClientID = "2128753";
APIKey = "7cc90d26-33e4-499b...";
SKU = 1626044001;
Result = OPI_Ozon.GetProductSubscribersCount(ClientID, APIKey, SKU);
- Bash
- CMD/Bat
oint ozon GetProductSubscribersCount \
--clientid "***" \
--apikey "***" \
--sku 1626044001
oint ozon GetProductSubscribersCount ^
--clientid "***" ^
--apikey "***" ^
--sku 1626044001
Result
{
"result": [
{
"sku": 1626044001,
"count": 1
}
]
}