First Post Request

Call this endpoint first to resolve the subject's identity and generate the KBA questionnaire.

❗️

Search type

Use KBA as the value for the galaxy-search-type header / requestType field.

📘

Minimum fields

FirstName, LastName, and Dob are the baseline for identity resolution. Adding Ssn or AddressLine1 significantly improves match confidence and questionnaire quality.

Identity

FieldTypeRequiredDescription
FirstNamestringSubject's first name.
MiddleNamestringSubject's middle name or initial. Optional; improves match precision.
LastNamestringSubject's last name.
DobstringDate of birth. Accepted formats: M/D/YYYY, MM/DD/YYYY, YYYY-MM-DD.
SsnstringSocial Security Number. Full or last 4 digits accepted. Strongly recommended.

Contact & address

FieldTypeDescription
AddressLine1stringStreet number and street name (e.g., "123 Main St").
AddressLine2stringUnit, apartment, or suite designator.
EmailstringEmail address associated with the subject.

Quiz configuration

FieldTypeDescription
IncludesarrayOptional include flags for additional response enrichment. Pass [""] if none.
QuizModestringStrict or Loose. Controls the scoring tolerance on Step 2. See Overview for details.

Example request

{
  "FirstName": "Shawn",
  "MiddleName": "",
  "LastName": "Hazen",
  "AddressLine1": "",
  "AddressLine2": "",
  "Dob": "1/16/1983",
  "Email": "",
  "Ssn": "",
  "Includes": [""],
  "QuizMode": "Loose"
}