cURL
curl --request POST \ --url https://api.example.com/api/v1/auth/login \ --header 'Content-Type: application/json' \ --data ' { "email": "<string>", "password": "<string>" } '
{ "message": "Login successful", "user": { "id": "...", "email": "you@company.com", "organization_id": "..." } }
Authenticate with email and password to receive JWT tokens.
access_token
refresh_token
Was this page helpful?