Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request POST \ --url http://localhost:7701/api/v1/auth/login \ --header 'Content-Type: application/json' \ --data ' { "email": "john@example.com", "password": "secret123" } '
{ "token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...", "token_type": "Bearer", "expires_at": "2026-05-27T12:00:00+00:00", "user": { "id": 1, "name": "John Doe", "email": "john@example.com", "company_id": 1 } }
Authenticates a user and returns a JWT token.
"john@example.com"
"secret123"
Login successful
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9..."
"Bearer"
"2026-05-27T12:00:00+00:00"
Show child attributes