Retrieve enrichment information for a person

GET/enrich/{connection_id}/person

Parameters

emailstring
The email of the person to search
twitterstring
The twitter handle of the person to search
namestring
The name of the person to search
linkedin_urlstring
The LinkedIn URL of the person to search
company_namestring
The name of the company the person is associated with. Not valid by itself.
connection_idstring required
ID of the connection

Returns

A person object from an enrichment integration

idstring
Unique identifier for this person object
created_atdate
The date that this person object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this person object was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
The name of the person
first_namestring
last_namestring
titlestring
The job title of the person
birthdatestring
The birth date of the person
image_urlstring
The image URL of the person
biostring
The biography description of the person
companystring
The companyorganization name of the person
company_domainstring
The company's domain
emails array
An array of email addresses for this person
telephones array
An array of telephones for this person
twitter_handlestring
The twitter handle of the person
linkedin_urlstring
The LinkedIn URL of the person
github_urlstring
The GitHub URL of the person
github_usernamestring
The GitHub username of the person
twitter_urlstring
The twitter URL of the person
facebook_urlstring
The Facebook URL of the person
gender enum
Valid values:
"MALE"
"FEMALE"
The gender of the person
addressobject
The address of the person
timezonestring
The timezone code of the person
utc_offsetnumber
The timezone's hourly offset from UTC of the person
work_histories array
const options = {
  method: 'GET',
  url: 'https://api.unified.to/enrich/5de520f96e439b002043d8dc/person',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    email: '',
    twitter: '',
    name: '',
    linkedin_url: '',
    company_name: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?