Error envelope
Every non-2xx response carries a JSON body with a stable shape. The error field is the machine-readable code;detail and other extra fields are diagnostic — your code should branch on code, not detail.
HTTP/1.1 422 Unprocessable Entity
Content-Type: application/json
{
"error": "from_domain_mismatch",
"fromDomain": "attacker.example.com",
"boundDomain": "yourdomain.com"
}