cURL
curl --request POST \ --url https://api.app.shinzo.ai/auth/verify_user \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "<string>", "verification_token": "<string>" } '
Verify a user’s email address using the verification token.
curl -X POST https://api.app.shinzo.ai/auth/verify_user \ -H "Content-Type: application/json" \ -d '{ "email": "user@example.com", "verification_token": "abc123def456..." }'
{ "message": "Email verified successfully. You can now log in." }
200
400
404