auth
User login
Authenticate user with username and password
post/api/auth/login
Request body
Example request
{
"password": "securepassword",
"username": "user@example.com"
}Response
Successful Response
Example response
{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"expires_in": 300,
"refresh_expires_in": 1800,
"refresh_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer"
}