Errors

DSAR-BE-1101: REQUEST_BODY_INVALID_JSON

Meaning

A handler expected JSON, but the request body could not be parsed.

Probable Causes

  • Body is malformed JSON.
  • Content-Type is JSON but payload is empty or truncated.

How to Fix

  1. Send syntactically valid JSON.
  2. Ensure Content-Type: application/json matches the payload format.

Retryable

No. Retry only after correcting the payload.

Minimal Trigger Example