Skip to content

Business Rule Violation

This problem occurs when the request is deemed invalid as it fails to meet business rule expectations.

Your client issued a request that failed business rule validation. Please review your request to determine if you can remain within appropriate business rules. Consider validating your request against available metadata (e.g. schemas) prior to sending to the server.

{
    "type": "https://developer.quinyx.com/api/problems/business-rule-violation",
    "title": "Business Rule Violation",
    "detail": "The request body is invalid and not meeting business rules.",
    "status": 422,
    "errors": [
        {
            "detail": "maximum quantity is 999",
            "pointer": "#/quantity"
        },
        {
            "detail": "specified country is not supported",
            "pointer": "#/country"
        }
     ]
}