Submit interaction

POST /api/experience/submit

Submit the current interaction.
- Submit the verified user identity to the OIDC provider for further authentication (SignIn and Register).
- Update the user's profile data if any (SignIn and Register).
- Reset the password and clear all the interaction records (ForgotPassword).

Responses

  • 200 application/json

    The interaction has been successfully submitted.

    Hide response attribute Show response attribute object
  • Bad Request

  • Multi-Factor Authentication (MFA) is enabled for the user but has not been verified.

  • The user has not been identified.

  • The user profile can not been processed, check error message for more details.
    - The profile data is invalid or conflicts with existing user data.
    - Required profile data is missing.
    - The profile data is already in use by another user account.

POST /api/experience/submit
curl \
 -X POST https://[tenant_id].logto.app/api/experience/submit
Response examples (200)
{
  "redirectTo": "string"
}