⏺ Bash(curl -s https://mayadev.mayaresearch.ai/api/v4/start -X POST -H "Content-Type: application/json" -d '{"device_id":"test","persona_id":"edit_photos"}' 2>&1) ⎿ { "sessionId": "9bf0d75f-e01f-4ab1-a15b-8fb515245533" } ⏺ Now test the SDP offer endpoint: ⏺ Bash(curl -s -o /dev/null -w "%{http_code}" https://mayadev.mayaresearch.ai/api/v4/sessions/9bf0d75f-e01f-4ab1-a15b-8fb515245533/api/offer -X POST -H "Content-Type:…) ⎿ 404 ⏺ The /start works but the SDP offer gets 404. This means your reverse proxy (nginx/ingress) is not routing /api/v4/sessions/{id}/api/offer to the backend. It likely only forwards known paths. Check your ingress/nginx config — it needs to forward all paths under /api/v4/ to the backend, including: - /api/v4/sessions/*/api/offer (POST + PATCH) What are you using for routing — nginx, K8s ingress, or something else? ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── ❯