curl --request POST \ --url http://localhost:8000/api/v1/auth/login \ --header "Content-Type: application/json" \ --data '{ "email": "user@example.com", "password": "password" }' | jq
{ "access_token": "<string>", "refresh_token": "<string>", "token_type": "bearer" }
Authenticate user with email and password
Schema for email/password login.
Successful Response
JSON payload containing both access and refresh tokens.