# Issues ## Sandbox Demo Endpoint Down - The demo endpoint `https://api-devna.dev-sagex3.com/demo/service/X3CLOUDV2_SEED/api` returns "Votre mot de passe a expiré" (password expired) - This means unauthenticated sandbox queries currently fail with 401 - This is an EXTERNAL issue — the Sage X3 demo server's credentials expired - Impact: Integration tests against sandbox will fail, but code logic is correct - Workaround: Tests should handle this gracefully — skip or expect 401 from demo endpoint - The code/tools are correct — the endpoint issue is outside our control ## GraphQL Client URL Fix - Original code appended `config.endpoint` to the URL path — INCORRECT - The `endpoint` value (e.g., REPOSX3_REPOSX3) goes in the `x-xtrem-endpoint` HEADER, not the URL - Fixed: client.ts now uses `config.url` directly, auth module handles the header