Skip to main content

SearchTypeDto Schema

The SearchTypeDto defines the type of verification search to perform.

Required Fields

Currently Supported: Only EMPLOYMENT and EDUCATION search types are available.

Search Type Options

EMPLOYMENT

Verifies employment history, job titles, dates of employment, and salary information.

EDUCATION

Verifies educational credentials, degrees, graduation dates, and academic achievements.

Complete Example

{
  "searchType": "EMPLOYMENT"
}

Multiple Search Types

You can request multiple verification types in a single order:
[
  {
    "searchType": "EMPLOYMENT"
  },
  {
    "searchType": "EDUCATION"
  }
]

Validation Rules

  • Enum Validation: searchType must be one of the allowed values (EMPLOYMENT or EDUCATION)