DSAR
Errors

DSAR-SDK-1101: SDK_NETWORK_ERROR

Meaning

The SDK could not complete the HTTP request due to a network-level failure.

Probable Causes

  • DNS resolution failure.
  • Connection refused or reset.
  • No internet connectivity.

How to Fix

  1. Verify network connectivity and DNS.
  2. Ensure target host is reachable.
  3. Check firewall/proxy settings.

Retryable

Yes. Network failures are often transient.

Minimal Trigger Example

// Request to unreachable host
const client = createClient({ baseUrl: "http://nonexistent.invalid" });
await client.requests.capture({ ... });