Verify verification code
Verify the provided verification code against the user's identifier. If successful, the verification record will be marked as verified.
POST
/api/experience/verification/verification-code/verify
curl \
--request POST 'https://[tenant_id].logto.app/api/experience/verification/verification-code/verify' \
--header "Content-Type: application/json" \
--data '{"identifier":{"type":"email","value":"string"},"verificationId":"string","code":"string"}'
Request examples
{
"identifier": {
"type": "email",
"value": "string"
},
"verificationId": "string",
"code": "string"
}
Response examples (200)
{
"verificationId": "string"
}