Authenticate a user and get an access token.
email
(string, required) - The user’s email address.password
(string, required) - The user’s password.access_token
(string) - The JWT access token for authenticating subsequent requests.refresh_token
(string) - The JWT refresh token used to obtain a new access token once the current one expires.token_type
(string) - The type of token, typically “bearer”.expires_at
(integer) - Unix timestamp indicating when the access token will expire.refresh_expires_at
(integer) - Unix timestamp indicating when the refresh token will expire.user
(object) - An object containing details about the authenticated user.
id
(string, UUID) - The user’s unique identifier.email
(string) - The user’s email address.name
(string) - The user’s name.organization_id
(string, UUID) - The unique identifier of the organization the user belongs to.Successful login for agent services. Token valid for a specific duration.
The response is of type object
.