Required Parameters
person_id
When calling the Person Retrieve API in URL, you must specify this as part of the endpoint URL.
You must use a Persistent ID for the
person_id. If the provided ID does not represent a record from our Person Dataset, then the Person Retrieve API will return a 404 Not Found error.
Using the
person_id Parameter in URLWhen calling the Person Retrieve API in URL, you must pass the person_id parameter as part of the endpoint path rather than as a URL parameter.For example, using the ID qEnOZ5Oh0poWnQ1luFBfVw_0000:- Correct:
v5/person/retrieve/qEnOZ5Oh0poWnQ1luFBfVw_0000 - Incorrect:
v5/person/retrieve?person_id=qEnOZ5Oh0poWnQ1luFBfVw_0000
Optional Parameters
pretty
api_key
Your API Key must be included in either the request header or the
api_key parameter. For more information about request authentication, see the Authentication page.
filter_updated
Use this parameter to filter which changes to person records count as an update. If you include this parameter in your request, only changes to the parameter-specific fields will count as an update.
If this parameter is not included in the request, any changes to the record (new data source, any field value change) will count as an update.
Supported Filters
| Filter Name | Update Based On |
|---|---|
education | education |
job_change | job_company_idjob_title |
location | location_namelocation_localitylocation_metrolocation_regionlocation_countrylocation_continentlocation_street_addresslocation_address_line_2location_postal_codelocation_geo |
mobile_phone_number | mobile_phone |
personal_emails | personal_emailsrecommended_personal_email |
phone_number | mobile_phonephone_numbers |
social_profile | linkedin_urllinkedin_usernamelinkedin_idfacebook_urlfacebook_usernamefacebook_idtwitter_urltwitter_usernamegithub_urlgithub_username |
work_email | work_email |
Using Multiple Filters
The Retrieve API supports using multiple filters in the same request. For example, if you use both thejob_change and location filters, a match will be returned if any of the associated fields for either filter have been updated (logical OR).
To use multiple filters, set filter_updated to a comma-separated string containing each filter name.
cURL
