loading
Preparing LoginRadius developer resources
Mission: Help enterprises accelerate digital transformation with our fully-managed Customer IAM technology.
Skip to main content

Auth Node

Verifies user credentials (password or passkey), issues an access token, and optionally a session token. The primary authentication gate in any login flow.
Authentication Node

Node Card

Auth
true
false
Error edges
4007 · 4008 · 4009
4010 · 4011 · 4013 · 4076
Category: Authentication Nodes
Type: auth
Typical position: After a Web Page node collecting Identity + Password, before MFA Configured State or a Success Final node.

PropertyTypeDefaultDescription
Access Tokencheckboxtrue (read-only)Always issues an access token on successful authentication. Cannot be disabled.
Session TokencheckboxfalseWhen enabled, issues a short-lived session-scoped feature token in addition to the access token. Required for MFA flows: MFA Configured State reads this token to look up the user's registered methods.
Error HandlingcustommultiselectAll errors set to automaticLets you override the default message shown to users for each error code. Setting a custom message activates that error code as a named output edge on the canvas.

Usage in Flows

The Auth node is the anchor of every login flow. A minimal email login places it after the Web Page node:

Web PageIdentityPasswordAuthTrueFalseSuccessFailure

For flows that include MFA, the Auth node's true output connects to MFA Configured State. In that case, Session Token must be enabled: MFA Configured State uses it to look up the user's registered MFA methods.


When to Use / When Not To

Use Auth for credential verification in login flows

Auth is the right node any time you need to verify an email/password pair and issue an access token in a single step. Place it after the Web Page node that collects credentials. Wire true to the next step (MFA or Success Final) and false back to the Web Page to surface an inline error.

Auth without Session Token when MFA follows
MFA Configured State reads the session token to look up the user's registered MFA methods. If Session Token is disabled on Auth, MFA Configured State has nothing to read and will fail silently.
Auth (Session Token: off) → MFA Configured State
Auth (Session Token: on) → MFA Configured State
Leaving named error edges unconnected in production
Unconnected named edges fall through to false (loop back to the login form). A locked-out user, an expired password, or an unverified email all look like "wrong credentials" with no recovery path. Wire each edge to an appropriate node.
accountlockedRoute to Unlock Account node or a locked-account info page
passwordexpiredRoute to an Update Password screen
emailunverifiedRoute to Send Email (verification template)
phoneunverifiedRoute to Send SMS (verification template)

Common Next Nodes

Auth (true)MFA Configured StateMFA flows: Session Token must be enabled
Auth (true)Success Finalsimple login without MFA
Auth (false)Web Pageretry / inline error