User APIs/Profile & Settings
Verify Email – Confirm OTP
POST
/user/profile/verify/email/confirmBearer token required
ADMIN | USERContent-Type:
application/jsonRequest Example
JSON
{
"otp": "123456"
}Code Examples
curl -X POST 'https://<your-domain>:3001/user/profile/verify/email/confirm' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{
"otp": "123456"
}'