curl --location '/api/v1/auth/resend-otp' \
--header 'Content-Type: application/json' \
--data-raw '{
"verification": {
"email": "john.doe@example.com",
"provider": "email"
}
}'{
"success": true,
"data": {
"message": "OTP sent successfully",
"verification": {
"expires_at": "2025-12-07T12:10:00Z",
"provider": "email"
}
}
}