Identify user for the current interaction
This API identifies the user based on the verificationId within the current experience interaction:
- SignIn
and ForgotPassword
interactions: Verifies the user's identity using the provided verificationId
.
- Register
interaction: Creates a new user account using the profile data from the current interaction. If a verificationId is provided, the profile data will first be updated with the verification record before creating the account. If not, the account is created directly from the stored profile data.
Body Required
-
verificationId string
The ID of the verification record used to identify the user.
-SignIn
andForgotPassword
interactions: Required to verify the user's identity.
-Register
interaction: Optional. If provided, it updates the profile data with the verification record before account creation. If omitted, the account is created using existing profile data in the current interaction.
Responses
-
201 application/json
Register
interaction: The user account has been successfully created and identified. -
SignIn
andForgotPassword
interactions: The user has been successfully identified. -
The provided verificationId is invalid, not verified, or cannot be used to identify the user.
-session.verification_failed:
The verification is not verified or can not be used to identify the user.
-guard.invalid_target:
TheverificationId
is missing, but required for theSignIn
andForgotPassword
interactions. -
The user is suspended or banned from the service. (SignIn and ForgotPassword only)
-
The
SignIn
orRegister
interaction is disabled in the experience settings. -
Entity not found.
-session.verification_session_not_found:
The verification record is not found.
-user.user_not_exist:
The user account is not found (SignIn and ForgotPassword only). -
The interaction has already been identified with a different user account.
-
The user account cannot be created due to validation errors, check error message for more details (Register only).
-user.<identifier>_already_in_use:
The given identifier is already in use by another user account.
-user.missing_profile:
Sign-in experience required user identifier or profile data is missing. (Register only)
curl \
-X POST https://[tenant_id].logto.app/api/experience/identification \
-H "Content-Type: application/json" \
-d '{"verificationId":"string","linkSocialIdentity":true}'
{
"verificationId": "string",
"linkSocialIdentity": true
}