Password Authentication¶
Traditional email/password authentication.
Login¶
curl -X POST http://localhost:8000/api/sso/v1/auth/login \
-d '{"identifier": "[email protected]", "secret": "password123"}'
Password Requirements¶
- Minimum 8 characters
- At least one uppercase letter
- At least one number
- At least one special character (configurable)
Password Reset¶
curl -X POST http://localhost:8000/api/sso/v1/auth/reset-password \
-d '{"identifier": "[email protected]"}'