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
-
The ID of the verification record used to identify the user.
-SignInandForgotPasswordinteractions: Required to verify the user's identity.
-Registerinteraction: 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
-
Registerinteraction: The user account has been successfully created and identified. -
SignInandForgotPasswordinteractions: 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:TheverificationIdis missing, but required for theSignInandForgotPasswordinteractions. -
The user is suspended or banned from the service. (SignIn and ForgotPassword only)
-
The
SignInorRegisterinteraction 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 \
--request POST 'https://[tenant_id].logto.app/api/experience/identification' \
--header "Content-Type: application/json" \
--data '{"verificationId":"string","linkSocialIdentity":true}'
{
"verificationId": "string",
"linkSocialIdentity": true
}