2. API Authentication
Last updated
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
POST https://int.quadrata.com/api/v1/login
apiKey*
String
Company API KEY
// Example Response
{
"data": {
"accessToken": "<JWT_TOKEN>",
"type": "login"
}
}Last updated