2. API Authentication

Authentication API to get an accessToken

We strongly recommend calling /api/v1/login on the server side to protect your API_KEY. The accessToken has an expiration time of 60 minutes for security reasons. Make sure to retrieve the accessToken when the user initiate the onboarding process.

Authentication API to get an accessToken to pass to <QuadClient>

POST https://int.quadrata.com/api/v1/login

Request Body

Name
Type
Description

apiKey*

String

Company API KEY

// Example Response
{ 
   "data":  { 
          "accessToken": "<JWT_TOKEN>", 
          "type": "login"
    }
}

Last updated