cURL
curl --request POST \ --url https://api.app.shinzo.ai/auth/resend_verification \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "<string>" } '
Request a new email verification link.
curl -X POST https://api.app.shinzo.ai/auth/resend_verification \ -H "Content-Type: application/json" \ -d '{ "email": "user@example.com" }'
{ "message": "Verification email sent. Please check your inbox." }
200
400
404