Errors

DSAR-SDK-1201: SDK_HTTP_ERROR

Meaning

The server returned an HTTP error status (4xx or 5xx) that the SDK mapped to this code.

Probable Causes

  • Server rejected the request (validation, auth, etc.).
  • Server internal error.

How to Fix

  1. Inspect error.status and error.message.
  2. Fix request payload or auth headers per server requirements.
  3. For 5xx, retry with backoff or contact service owner.

Retryable

Yes for 5xx. No for 4xx unless request is corrected.

Minimal Trigger Example