Employment History

The Employment History Insights Bundle returns current and historical employment history for a given contact. This data includes the organization and title during employment and approximate start and end dates. This Insights Bundle will be returned within the employment key in the details object of a Person Summary object.


{"employment": [
  {
    "name": "ACME, Inc",
    "domain": "acme.com",
    "current": false,
    "title": "Widget Maker",
    "start": {
      "year": 2010,
      "month": 6,
      "day": 1
    },
    "end": {
      "year": 2015,
      "month": 10,
      "day": 15
    }
  },
  ...
]}
Properties

name string

The name of the organization/place of employment.

domain string

The website domain of the place of employment.

current boolean

Indicator of whether or not this is the current place of employment.

title string

Job or position title.

start object

Object representing start date, with properties for year, month and day returned as integers.

end object

Object representing end date, with properties for year, month and day returned as integers.