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.

Production URL: https://prod.quadrata.com/api/v1/login

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

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

Request Body

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

Last updated