curl --location --request POST '/api/auth/send-verification-email' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "user@example.com",
"callbackURL": "https://example.com/callback"
}'
{
"status": true
}