Employment history report combines verification, employment, employer and employee identity information, see links below for more details. If you want to run employment history report with your API keys, visit API reference.

Available data:

Sample response

{
  "id": "24d7e80942ce4ad58a93f70ce4115f5c",
  "status": "new",
  "completed_at": "2021-04-06 11:30:00+00:00",
  "access_token": "48427a36d43c4d5aa6324bc06c692456",
  "tracking_info": "user123456",
  "employments": [
    {
      "id": "24d7e80942ce4ad58a93f70ce4115f5c",
      "job_title": "PR associate",
      "job_type": "F",
      "start_date": "2018-01-01",
      "end_date": "2019-08-24",
      "external_last_updated": "2019-08-24",
      "original_hire_date": "2017-06-21",
      "is_active": false,
      "dates_from_statements": false,
      "derived_fields": [
        "is_active"
      ],
      "missing_data_fields": [
        "w2s"
      ],
      "profile": {
        "first_name": "John",
        "last_name": "Doe",
        "middle_initials": "K",
        "ssn": "123456789",
        "email": "[email protected]",
        "date_of_birth": "1992-03-03",
        "home_address": {
          "street": "1 Morgan Ave",
          "city": "Los Angeles",
          "state": "CA",
          "zip": "90210"
        }
      },
      "company": {
        "name": "Facebook Demo",
        "address": {
          "street": "1 Hacker Way",
          "city": "Menlo Park",
          "state": "CA",
          "zip": "94025"
        },
        "phone": "6503087300"
      }
    }
  ],
  "provider": "adp"
}

Verification data

Data associated with employment verification.

NameTypeDescription
idstringUnique ID of the report
statusstringTasks status from the Task Lifecycle
completed_atstringTimestamp of report completion
access_tokenstringaccess_token for a Link to payroll provider
tracking_infostringAny string value provided by you when bridge_token was created
providerstringPayroll provider which user connected
employmentsobjectList of employments received from a payroll provider

Employment data

Information about all employments that were found in payroll provider records.

NameTypeDescription
idstringUnique ID for an employment
job_titlestring
(nullable)
Employee's job title
job_typestring
(nullable)
Type of employment recorded in payroll provider:
F - Full Time
P - Part Time
S - Seasonal
D - Daily (per diem)
C - Contract
start_datestring(date)Date when employment started
end_datestring(date)
(nullable)
Date when employment ended
external_last_updatedstring(date)
(nullable)
Date when employment data was last updated in payroll provider
original_hire_datestring(date)
(nullable)
Populated in the case that an employee has worked for the same employer during multiple, separate time periods with a gap between each period.

In the case that the employee has not worked for the employer during multiple, separate time periods, original_hire_date will be returned as a null field.
is_activeboolean
(nullable)
Indicates whether the employment is still active
dates_from_statementsboolean
(nullable)
Indicates whether employee's hire and/or termination dates were derived from first/last pay statements
derived_fieldsobject
(nullable)
Array of derived fields
missing_data_fieldsobject
(nullable)
List of data fields which are missing in the payroll API response
companyobject
(nullable)
Employer information
profileobject
(nullable)
Identity information

Employer data

Information about all employers that were found in payroll provider records.

NameTypeDescription
namestringEmployer name
addressobject
(nullable)
Employer address
streetstring
(nullable)
Employer street
citystring
(nullable)
Employer city
statestring
(nullable)
Employer state
zipstring
(nullable)
Employer zip code
phonestring
(nullable)
Employer phone number

Identity data

Employee's personal information found in payroll provider.

NameTypeDescription
first_namestringFirst name
last_namestringLast name
middle_initialsstring
(nullable)
Middle initials
ssnstring
(nullable)
Social security number (Full or last 4 digits)
emailstring(email)
(nullable)
Personal or work email address
date_of_birthstring(date)
(nullable)
Date of birth
home_addressobject
(nullable)
Home address
streetstring
(nullable)
Street
citystring
(nullable)
City
statestring
(nullable)
State
zipstring
(nullable)
Zip code