Quota exceeded error
About
Contains a quota exceeded error message and data. This error occurs when trying to create more objects
of a specific type than allowed. See more User quota
Fields
Name |
Type |
Required |
Description |
id |
integer |
Yes |
Error id |
error |
string |
Yes |
Error name |
message |
string |
Yes |
Error description |
metadata |
object |
Yes |
Additional information about exceeded quota. See below |
Name |
Type |
Required |
Description |
type |
string |
Yes |
Type of the resources, quota of which is exceeded |
quota |
number |
Yes |
Maximum value of objects for user |
region |
string |
|
Optional quota type region |
Examples
{
"id": 1,
"error": "QuotaExceededError",
"message": "Unable to create a new provisioning profile because the quota of 100 provisioning profiles has been reached. Please contact support in order to extend your quota.",
"metadata": {
"quota": 100,
"type": "maxProfiles"
}
}
{
"id": 2,
"error": "QuotaExceededError",
"message": "Unable to deploy an account in vint-hill because the quota of 100 deployed G2 accounts in vint-hill has been reached. Please contact support in order to extend your quota.",
"metadata": {
"quota": 100,
"type": "maxDeployedG2Accounts",
"region": "vint-hill"
}
}