@dan Thanks for your reply.
As you suggested, I've tried PUT /api/user/verify-registration?applicationId={applicationId}&email={email}&sendVerifyRegistrationEmail=true
It returns same an empty body and it doesn't send the email, either.
@dan Thanks for your reply.
As you suggested, I've tried PUT /api/user/verify-registration?applicationId={applicationId}&email={email}&sendVerifyRegistrationEmail=true
It returns same an empty body and it doesn't send the email, either.
Hi, I tried with workaround solution to set to email verified via API calls and I searched relevant questions and solutions but couldn't find right one.
So, I've registered a user via /api/user/registration/
successfully and the email for verification is sent.
"registration": {
"insertInstant": 1602003962113,
"lastLoginInstant": 1602003962115,
"lastUpdateInstant": 1602003962113,
"usernameStatus": "ACTIVE",
"verified": true
},
"user": {
"active": true,
"verified": false
}
Secondly, I tried to get the email verification ID via API call to get resent verificationId - PUT /api/user/verify-email?email={{loginEmail}}&sendVerifyRegistrationEmail=true
however, it returns the empty response and the email for verification isn't sent from this call.
Can you give some tips to get verificatioId
from API call?
Thanks,