Verify a verification code
Verify a verification code for a specified identifier. if you're using email as the identifier, you need to setup your email connector first. if you're using phone as the identifier, you need to setup your SMS connector first.
Body object Required
POST /api/verification-codes/verify
curl \
-X POST https://[tenant_id].logto.app/api/verification-codes/verify \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"email":"string","verificationCode":"string"}'
Request examples
Object-1 (generated)
{
"email": "string",
"verificationCode": "string"
}
{
"phone": "string",
"verificationCode": "string"
}