Enrich person
Match a person with our database and enrich it with additional information.
Cost: 3 credits
Body Required
-
Additional properties are NOT allowed.
-
company object | null
The company to match with
Additional properties are NOT allowed.
-
revealEmails object | null
Additional properties are NOT allowed.
-
revealPhones object | null
Additional properties are NOT allowed.
POST /v2/enrich/person
curl \
-X POST https://api.ocean.io/v2/enrich/person?apiToken=string \
-H "Content-Type: application/json" \
-d '{"person":{"id":"b8952796be57982d","name":"John Doe","firstName":"John","lastName":"Doe","jobTitle":"CEO","email":"john.doe@example.com","phone":"+45 12345678","facebook":"https://www.facebook.com/johndoe","twitter":"https://twitter.com/johndoe","linkedin":"https://www.linkedin.com/in/johndoe","country":"dk"},"company":{"name":"Ocean ApS","registrationNumber":"123456789","email":"hello@ocean.io","phone":"+45 12345678","countryCode":"dk","state":"Arkansas","city":"Copenhagen","streetAddress":"Strandgade 6","postalCode":"1401","address":"Strandgade 6, 1401 Copenhagen","facebook":"https://www.facebook.com/oceanio","twitter":"https://twitter.com/oceanio","linkedin":"https://www.linkedin.com/company/oceanio","instagram":"https://www.instagram.com/oceanio","xing":"https://www.xing.com/oceanio","domain":"ocean.io","youtube":"https://www.youtube.com/oceanio"},"revealEmails":{"webhookUrl":"https://url.com/webhook","includeEmails":true},"revealPhones":{"webhookUrl":"https://url.com/webhook","includePhones":true}}'
Request examples
{
"person": {
"id": "b8952796be57982d",
"name": "John Doe",
"firstName": "John",
"lastName": "Doe",
"jobTitle": "CEO",
"email": "john.doe@example.com",
"phone": "+45 12345678",
"facebook": "https://www.facebook.com/johndoe",
"twitter": "https://twitter.com/johndoe",
"linkedin": "https://www.linkedin.com/in/johndoe",
"country": "dk"
},
"company": {
"name": "Ocean ApS",
"registrationNumber": "123456789",
"email": "hello@ocean.io",
"phone": "+45 12345678",
"countryCode": "dk",
"state": "Arkansas",
"city": "Copenhagen",
"streetAddress": "Strandgade 6",
"postalCode": "1401",
"address": "Strandgade 6, 1401 Copenhagen",
"facebook": "https://www.facebook.com/oceanio",
"twitter": "https://twitter.com/oceanio",
"linkedin": "https://www.linkedin.com/company/oceanio",
"instagram": "https://www.instagram.com/oceanio",
"xing": "https://www.xing.com/oceanio",
"domain": "ocean.io",
"youtube": "https://www.youtube.com/oceanio"
},
"revealEmails": {
"webhookUrl": "https://url.com/webhook",
"includeEmails": true
},
"revealPhones": {
"webhookUrl": "https://url.com/webhook",
"includePhones": true
}
}
Response examples (200)
{
"id": "e9447c74eafa8a19",
"domain": "google.com",
"name": "John Doe",
"firstName": "John",
"lastName": "Doe",
"country": "us",
"location": "Copenhagen, Capital Region, Denmark",
"linkedinUrl": "https://www.linkedin.com/in/someone",
"seniorities": [
"C-Level",
"Manager"
],
"departments": [
"Management",
"Marketing and Advertising"
],
"photo": "http://media.licdn.com/dms/image/somelink",
"jobTitle": "Professeur",
"jobTitleEnglish": "Teacher",
"summary": "Some text that the person wrote to describe themselves"
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}