Skip to content

Errors

Both relays share consistent HTTP error semantics. This page lists the cross-cutting cases; the product pages detail endpoint-specific errors.

StatusMeaningWhat to do
400Malformed request.Fix the payload.
401Invalid authentication (signature, token, timestamp).See Authentication (HMAC).
403Forbidden (tenant suspended, insufficient scope).Check the tenant status and your privileges.
404Not found — or scope-masked (system console).Check the id and your privileges.
409Conflict (incompatible state, duplicate).Re-read current state before retrying.
422Validation failed.Fix the flagged fields.
429Rate limit reached.Slow down; respect the limit headers.
500Internal error.Retry with backoff; contact support if persistent.

The Auth Relay uses a two-call protocol for sensitive actions. The first call returns a 403 with the code SUDO_INSTRUCTION_KEY_REQUIRED and an instruction_id: this is not a terminal error, but an approval request. Re-issue the call after approval with the X-Sudo-Instruction-Key header. See Sudo (step-up).

The most frequent 401s come from the signature: signed body differs from the sent body, wrong tenant_secret, or clock skew. The full diagnostic table is on Authentication (HMAC).