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

External Identity Lookup

Looks up the identity of the user in an external identity server via HTTP request. Use this to verify a user exists in a third-party system before proceeding.
Authentication Node

Node Card

External Identity Lookup
true
false
Error edges
4083
Category: Authentication Nodes
Type: external-identity-lookup
Typical position: After identity collection, before the LoginRadius Auth node, when a third-party system must confirm the user exists first.

PropertyTypeRequiredDescription
Auth URLtextYesURL of the external identity endpoint.
Authentication TypeselectYesAuthentication method for the outbound request: Basic Auth, Bearer Token, or No Authentication.
UsernametextIf Basic AuthUsername credential for Basic Auth.
PasswordtextIf Basic AuthPassword credential for Basic Auth.
Bearer TokentextIf Bearer TokenBearer token value sent in the Authorization header.
HTTP MethodselectYesHTTP verb for the request: GET or POST.
Body TyperadioIf POSTFormat of the request body: JSON or X-WWW-form-urlencoded.
BodytextareaIf POSTRequest body content, formatted according to the selected Body Type.
Request Headerskeyval pairsNoAdditional HTTP headers to include in the request.
Request Query Paramskeyval pairsNoQuery parameters to append to the Auth URL.
Error HandlingcustommultiselectNoError handling for each selected error code. Setting a custom message activates that error code as a named output edge on the canvas.

note

Never hard-code credentials directly in flow properties. Use environment-level secrets management or a secure vault integration where possible.


Common Next Nodes

External Identity Lookup (true)MFA Configured Statecontinue to MFA challenge
External Identity Lookup (true)Success Finalproceed directly on successful external lookup
External Identity Lookup (false)Failure Finaluser not found in external system

Usage Notes

External Identity Lookup makes an outbound HTTP call to a third-party identity system and interprets the response to determine whether the user should be allowed to proceed. A 2xx response routes to true; any other response routes to false (or a configured error edge). Use this node for migration flows or hybrid identity architectures where the authoritative user store is outside LoginRadius.