Verify MFA verification code
Verify the provided MFA verification code. The verification code must have been sent using the MFA verification code endpoint. This endpoint verifies the code against the user's bound identifier and marks the verification as complete if successful.
POST
/api/experience/verification/mfa-verification-code/verify
curl \
--request POST 'https://[tenant_id].logto.app/api/experience/verification/mfa-verification-code/verify' \
--header "Content-Type: application/json" \
--data '{"verificationId":"string","code":"string","identifierType":"email"}'
Request examples
{
"verificationId": "string",
"code": "string",
"identifierType": "email"
}
Response examples (200)
{
"verificationId": "string"
}