post__user_login
POST /user/login
User Login
Authenticate user with email and password.
This endpoint validates user credentials and returns JWT tokens for API access. The system checks:
Email exists and is active
Password matches stored hash
Account is not deleted or banned
Authentication Flow:
Submit email and password
System validates credentials
Returns JWT access token and refresh token
Use access token in Authorization header for API calls
Use refresh token to get new access token when expired
Token Expiration:
Access tokens expire after 1 hour
Refresh tokens have longer expiration
Use
/user/refreshto renew access tokens
TypeScript Client Library
Code Samples
Body parameter
Parameters
body
body
object
true
none
body
string(email)
true
User's email address
» password
body
string
true
User's password
Example responses
200 Response
Responses
Response Schema
Status Code 200
» success
boolean
false
none
none
» accessToken
string
false
none
JWT access token for API authentication
» refreshToken
string
false
none
JWT refresh token for token renewal
» tokenId
string
false
none
Internal token identifier
» expiresAt
integer
false
none
Access token expiration timestamp
» user
object
false
none
none
»» id
string
false
none
User's unique identifier
string
false
none
User's email address
»» name
string
false
none
User's display name
»» orgId
string
false
none
Organization identifier
Status Code 401
» success
boolean
false
none
none
» error_code
string
false
none
Specific authentication error
Enumerated Values
error_code
USER_NOT_FOUND
error_code
INVALID_PASSWORD
error_code
USER_INACTIVE
error_code
NO_PASSWORD_SET
To perform this operation, you must be authenticated by means of one of the following methods: BearerAuth
Last updated
Was this helpful?