curl --request POST \
--url https://api.mnemom.ai/v1/auth/sign-out \
--cookie mnemom_session={
"ok": true
}Revokes the refresh token upstream and clears mnemom_session + mnemom_mfa_pending.
curl --request POST \
--url https://api.mnemom.ai/v1/auth/sign-out \
--cookie mnemom_session={
"ok": true
}HttpOnly, Secure, SameSite=Lax cookie issued by /v1/auth/sign-in (or the SSO / email-callback flows). The value is an AES-256-GCM-encrypted blob of {access_token, refresh_token, issued_at, auth_method}. Browser clients include this automatically with credentials: "include".
Cookies cleared.