Get Organization quotas

Description

Get quotas for the amount of ressources the organization is allowed to create.

Request

GET /v1/organizations/:organizationId/quotas

Response

Successful response contains the following JSON formated body:

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

Response Status codes:

  • 200 on success

Request headers

This request must have the following headers:

  • Authorization: bearer <ApiKey>

Example

Request

curl "https://api.cloud.nabto.com/v1/organizations/:organizationId/quotas" \
  -H "Authorization: Bearer <ApiKey>"

Response

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