Skip to main content
PUT
/
v1
/
regions
/
global
/
organizations
/
quotas
Update organization quotas
const options = {
  method: 'PUT',
  headers: {'Content-Type': 'application/json'},
  body: JSON.stringify({quotas: [{resourceType: '<string>', limit: 123}]})
};

fetch('https://api.example.com/v1/regions/global/organizations/quotas', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "resourceType": "<string>",
      "limit": 123,
      "used": 123,
      "unit": "<string>",
      "scope": "organization",
      "enforcementPolicy": "hard"
    }
  ]
}

Body

application/json
quotas
object[]
required

Response

200 - application/json

Quotas updated

success
enum<boolean>
Available options:
true
data
object[]