Get products requests limits
Get requests limits for products management methods
Function GetProductsRequestsLimits(Val ClientID, Val APIKey) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
ClientID | --clientid | String | ✔ | Client identifier |
APIKey | --apikey | String | ✔ | API key |
Returns: Map Of KeyAndValue - serialized JSON response from Ozon Seller API
tip
Method at API documentation: post /v4/product/info/limit
1C:Enterprise/OneScript code example
ClientID = "2128753";
APIKey = "7cc90d26-33e4-499b...";
Result = OPI_Ozon.GetProductsRequestsLimits(ClientID, APIKey);
- Bash
- CMD/Bat
oint ozon GetProductsRequestsLimits \
--clientid "***" \
--apikey "***"
oint ozon GetProductsRequestsLimits ^
--clientid "***" ^
--apikey "***"
Result
{
"daily_create": {
"usage": 0,
"limit": 1500,
"reset_at": "2024-10-10T00:00:00Z"
},
"daily_update": {
"usage": 0,
"limit": 5000,
"reset_at": "2024-10-10T00:00:00Z"
},
"total": {
"usage": 4,
"limit": 20000
}
}