Errors

DSAR-BE-1201: REQUEST_ROUTE_NOT_FOUND

Meaning

No backend route is registered for the incoming method/path combination.

Probable Causes

  • Typo in endpoint path or wrong API version prefix.
  • Incorrect method (POST vs GET).

How to Fix

  1. Check path/method against OpenAPI docs.
  2. Ensure base path is included (/api/v1 when configured).

Retryable

No. Retry only after correcting route path or method.

Minimal Trigger Example