Set Organization quotas
Description
Set quotas for organizations, this function is only available to administrators. possible quota names are: domains, products, products:apps
Request
POST /v1/organizations/:organizationId/quotas
{
name: string,
value: number
}
Response
Response Status codes:
- 204 on success
Request headers
This request must have the following headers:
Authorization: bearer <ApiKey>Content-Type: application/json
Example
Request
curl -XPOST "https://api.cloud.nabto.com/v1/organizations/:organizationId/quotas" \
-H "Authorization: Bearer <ApiKey>" \
-H "Content-Type: application/json" \
-d '{ "name": "friendly name", "value": 42}'
Response
Returns response Code: 204