403 - Limit Exceeded
When the API call is meant to create an additional resource and the account has not enough room left for it, a validation error occurs, explaining the API user which resource threshold has been hit.
VALIDATION ERROR OBJECT
Property | Type | Description |
---|---|---|
source | string | Request property which originated the error. Can be: - links - domains - tags - scripts - teams - teammates |
message | string | Message to the user explaining which threshold has been hit. E.g. "Number of domains exceeded" |
code | string | Always LimitExceeded |
Example validation error: missing required field
// HTTP status 403
{
"code": "LimitExceeded",
"message": "Number of domains exceeded",
"source": "domains"
}
Updated 6 months ago