/auth/login
Authenticates a user and returns an organization-scoped JWT access token. Use service-account API keys for unattended CI/CD automation.
- Authentication
- Not required.
- Request body
- email: string password: string
access_token, token_type, user, organization, admin. The response also establishes secure refresh cookies for browser sessions.
Show code ↓
curl -X POST "https://api.quantikmind.com/api/v1/auth/login" -H "Content-Type: application/json" -d '{"email":"developer@example.com","password":"<password>"}' Show code ↓
{"access_token":"<jwt>","token_type":"bearer","user":{"id":"<uuid>","username":"developer","email":"developer@example.com","full_name":"Developer","email_verified":true},"organization":{"id":"<uuid>","name":"Acme Engineering","slug":"acme-engineering"},"admin":true}