Skip to main content

Get products requests limits

Get requests limits for products managment methods

Function GetProductsRequestsLimits(Val ClientID, Val APIKey) Export

ParameterCLI optionTypeDescription
ClientID--clientidStringClient identifier
APIKey--apikeyStringAPI key

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


tip

Method at API documentation: post /v4/product/info/limit


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

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

Result
{
"daily_create": {
"usage": 0,
"limit": 1500,
"reset_at": "2024-08-26T00:00:00Z"
},
"daily_update": {
"usage": 4,
"limit": 5000,
"reset_at": "2024-08-26T00:00:00Z"
},
"total": {
"usage": 2,
"limit": 20000
}
}