curl --location 'https://stageapi.partake.ng/api/v2/auth/otp/verify' \
--header 'Content-Type: application/json' \
--data-raw '{
"purpose": "email_verification",
"actorType": "merchant",
"code": "842651",
"email": "yourancestor.irritable069@slmail.me"
}
// purpose: email_verification | phone_verification | password_reset
// actorType: merchant | user
// email: required for password_reset purpose (email channel)
// phoneNumber: required for password_reset purpose (phone/whatsapp channel)'{
"success": true,
"data": {
"verified": true
},
"message": "OTP verified."
}