Quick Start

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.

Login

POST https://[API_URL]/login

Perform user authentication and return a valid token.

Headers

Name
Value

Content-Type

application/json

tenant

logicsat

Body

Name
Type
Description

email*

string

user email

password*

string

user password

Response

{
    "authorization": {
        "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXV…"
    }
}

curl --location --request POST '[API_URL]/login' \
--header 'Content-Type: application/json' \
--header 'tenant: logicsat' \
--data-raw '{
    "email": "***", 
    "password": "***"
}'

Last updated