curl --location 'https://api.kabonshare.com/api/user-auth/verify-otp' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "user@example.com",
"otp": "string"
}'{
"status": true,
"message": "string",
"data": {
"token": "string",
"apiKey": "string",
"user": {
"_id": "string",
"email": "user@example.com",
"name": "string",
"role": "user",
"isActive": true,
"emailVerified": true,
"hasCompletedOnboarding": true,
"picture": "string",
"provider": "local",
"createdAt": "2019-08-24T14:15:22.123Z"
}
}
}