Auth Node
Node Card
Category: Authentication Nodes
Type:
authTypical position: After a Web Page node collecting Identity + Password, before MFA Configured State or a Success Final node.
Properties
Outputs & Errors
| Property | Type | Default | Description |
|---|---|---|---|
| Access Token | checkbox | true (read-only) | Always issues an access token on successful authentication. Cannot be disabled. |
| Session Token | checkbox | false | When 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 Handling | custommultiselect | All errors set to automatic | Lets 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. |
The Auth node emits a true or false output plus one edge per error code configured in the Error Handling property.
| Output / Code | Condition | Default message |
|---|---|---|
true | Credentials valid, access token issued | NA |
false | Authentication failed (catch-all for unhandled errors) | NA |
4007 | Identity not found in the directory | User does not exist |
4008 | Account is blocked by admin or policy | Your account is blocked |
4009 | Account is locked (e.g. too many failed attempts) | Your account has been locked |
4010 | Email address has not been verified | Email is not verified |
4011 | Phone number has not been verified | Phone number is not verified |
4013 | Password has passed its expiry date | Password is expired |
4076 | Credentials submitted but are incorrect | Invalid user ID and/or password |
tip
Error edges only appear on the canvas when you explicitly select them in the Error Handling property. An unselected error code falls through to the false output. Select only the errors you plan to handle with a dedicated path.
Usage in Flows
The Auth node is the anchor of every login flow. A minimal email login places it after the Web Page node:
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
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