TypeScript
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" } ] }
Update quota limits for the organization (admin only)
Show child attributes
Quotas updated
true
Was this page helpful?