`GET /api/auth/sso/forget` — the visible "use a different sign-in" escape (Issue #339 / ADR 0031 A6). Clears the remembered-realm hint and returns to the login form with the auto-redirect suppressed. No auth required: it only removes a non-secret hint cookie and is idempotent. A GET so it can be a plain link on the login form.
GET
/api/auth/sso/forget
const url = 'https://example.com/api/auth/sso/forget';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/auth/sso/forgetResponses
Section titled “Responses”Realm hint cleared and browser redirected to the login form