Errors

DSAR-BE-1102: REQUEST_ROUTE_PARAM_MISSING

Meaning

A route parameter required by server-side handler logic is absent.

Probable Causes

  • Route path does not match the expected parameterized shape.
  • Client generated URL omitted a required segment.

How to Fix

  1. Verify URL includes all required path parameters.
  2. Use SDK route helpers to build paths instead of string concatenation.

Retryable

No. Retry with corrected route path.

Minimal Trigger Example