v1

latestOpenAPI 3.0.0Apache 2.02026-07-1410280162.7 KB
apikeys

Get the quota state of an api key

Get the quota state of an api key

get/api/groups/{groupId}/apikeys/{clientId}/quotas

Path parameters

groupIdstring required

The api key group id

clientIdstring required

the api key id

Response

Successful operation

authorizedCallsPerDayinteger required

The number of authorized calls per day

authorizedCallsPerMonthinteger required

The number of authorized calls per month

authorizedCallsPerSecinteger required

The number of authorized calls per second

currentCallsPerDayinteger required

The current number of calls per day

currentCallsPerMonthinteger required

The current number of calls per month

currentCallsPerSecinteger required

The current number of calls per second

remainingCallsPerDayinteger required

The remaining number of calls per day

remainingCallsPerMonthinteger required

The number of authorized calls per month

remainingCallsPerSecinteger required

The remaining number of calls per second

Example response

{
  "authorizedCallsPerDay": 123,
  "authorizedCallsPerMonth": 123,
  "authorizedCallsPerSec": 123,
  "currentCallsPerDay": 123,
  "currentCallsPerMonth": 123,
  "currentCallsPerSec": 123,
  "remainingCallsPerDay": 123,
  "remainingCallsPerMonth": 123,
  "remainingCallsPerSec": 123
}