Quick Start
Prerequisites: Before beginning, it is essential to have a username and password enabled to access the endpoints. Each user has defined permissions determining which endpoints they can access.
User Security: Each user is unique, and ensuring the security of your account is entirely your responsibility. We recommend that you promptly change the temporary password you are given and keep your login information secure. Additionally, we advise regularly updating your password as needed.
Obtain your token for API authorization
Our API requests require authentication via a username and password, which generates a token. Any request lacking the token key will result in an error. Tokens can be generated using the login endpoint.
Important Note: The generated token is valid for 24 hours by default. It is crucial to implement mechanisms to re-validate access credentials in order to obtain a new token.
Login
POST https://[API_URL]/login
Perform user authentication and return a valid token.
Important Note: All requests must contain in the header the authorization token and the parameter "tenant" which by default is "logicsat" or otherwise it is supplied by us to each company.
Headers
Content-Type
application/json
tenant
logicsat
Body
email*
string
user email
password*
string
user password
Response
Last updated