Authenticate a user with email and password
cURL
curl --request POST \ --url https://api.example.com/auth/login \ --header 'Content-Type: application/json' \ --data ' { "email": "<string>", "password": "<string>" } '
{ "200": {}, "401": {} }
POST /auth/login
curl -X POST https://api.example.com/auth/login \ -H "Content-Type: application/json" \ -d '{ "email": "[email protected]", "password": "securePassword123" }'
Login successful
Invalid email or password