πŸ”‘# 1 Authentication Token API

First Step When Customer Needs To Authenticate You Have To Initialize Session First By Creating Session Token Using The Following API

post
Authorizations
Header parameters
Accept-LanguageStringOptional
Body
tenantIdstring | nullableOptional
tenantSecretstring | nullableOptional
applicantIdstring | nullableOptional
levelOfTrutTokenstring | nullableOptional
Responses
200
Success
post
POST /api/v1/Auth/GenerateAuthRequestSessionToken HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 88

{
  "tenantId": "text",
  "tenantSecret": "text",
  "applicantId": "text",
  "levelOfTrutToken": "text"
}
{
  "token": "text",
  "expirationDate": "2025-07-01T02:06:37.357Z"
}

Applicant Id : You Have To Determine The ID Of The Applicant To Authenticate You Can Find This Id In The Data Returned Back To You In The Callback URL

Last updated