Get Quotas

Description

list all default quotas Only available to administrators

Request

GET /v1/default-quotas

Response

Successful response contains the following JSON formated body:

{
  quotas: {
     name: string,
    value: number,
    level: string,
    description: string 
  }[]
}

Response Status codes:

  • 200 on success

Request headers

This request must have the following headers:

  • Authorization: bearer <ApiKey>
  • X-Nabto-Organization: <organizationId>

Example

Request

curl "https://api.cloud.nabto.com/v1/default-quotas" \
  -H "Authorization: Bearer <ApiKey>" \
  -H "X-Nabto-Organization: <OrganizationId>"

Response

{
   quotas: [{
     name: "friendly name",
    value: 42,
    level: "<level>",
    description: "<description>" 
  },
  ...]
}