For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authentication

Authentication endpoints

Login (authentication prerequisite)

post

Prerequisite for the whole API. Use your username and password to log in and obtain an access token, then send that token as the Bearer token on every other endpoint in this reference.

Body
usernamestringRequiredExample: <username>
passwordstring · passwordRequiredExample: <password>
Responses
200

Authentication succeeded.

application/json
accessTokenstringOptionalExample: <access_token>
idTokenstringOptionalExample: <id_token>
refreshTokenstringOptionalExample: <refresh_token>
tokenTypestringOptionalExample: Bearer
expiresInintegerOptionalExample: 86400
scopestringOptionalExample: openid profile email offline_access
expiresAtstringOptionalExample: 2024-04-23T04:45:11.625+00:00
post/lineajeidentity/api/v1/login
200

Authentication succeeded.

Last updated