Admin APIs/Profile & Verification
Verify WhatsApp – Confirm OTP
POST
/admin/profile/verify/whatsapp/confirmBearer token required
ADMINContent-Type:
application/jsonRequest Example
JSON
{
"otp": "123456"
}Code Examples
curl -X POST 'https://<your-domain>:3001/admin/profile/verify/whatsapp/confirm' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{
"otp": "123456"
}'