diff --git a/index.html b/index.html index ddbd25c7533..2f82e65618f 100644 --- a/index.html +++ b/index.html @@ -594,6 +594,8 @@

Response headers

Enrichment API

Bulk people enrichment

curl -X POST -H "Content-Type: application/json" -H "Cache-Control: no-cache" -H "X-Api-Key: YOUR API KEY HERE" -d '{
     "reveal_personal_emails": true,
+    "reveal_phone_number": true,
+    "webhook_url": "https://your_webhook_site",
     "details": [
         {
             "first_name": "Tim",
@@ -619,7 +621,9 @@ 

Enrichment API

Bulk url = "https://api.apollo.io/api/v1/people/bulk_match" data = { - "reveal_personal_emails": true, + "reveal_personal_emails": True, + "reveal_phone_number": True, + "webhook_url": "https://your_webhook_site", "details": [ { "first_name": "Tim", @@ -627,7 +631,7 @@

Enrichment API

Bulk "domain": "apollo.io", "hashed_email": "8d935115b9ff4489f2d1f9249503cadf", "email": "tim@apollo.io", - "organization_name": "Apollo" + "organization_name": "Apollo", "linkedin_url": "http://www.linkedin.com/in/tim-zheng-677ba010" }, { @@ -635,7 +639,7 @@

Enrichment API

Bulk "last_name": "Chung", "email": "roy@apollo.io", "hashed_email": "97817c0c49994eb500ad0a5e7e2d8aed51977b26424d508f66e4e8887746a152", - "organization_name": "Apollo" + "organization_name": "Apollo", "linkedin_url": "http://www.linkedin.com/in/royychung" } ] @@ -1545,8 +1549,11 @@

People enrichment

"email": "name@domain.io", "hashed_email": "8d935115b9ff4489f2d1f9249503cadf", "domain": "apollo.io", + "linkedin_url": "http://www.linkedin.com/in/tim-zheng-677ba010", "reveal_personal_emails": true, - "linkedin_url": "http://www.linkedin.com/in/tim-zheng-677ba010" + "reveal_phone_number": true, + "webhook_url": "https://your_webhook_site" + }'
"https://api.apollo.io/v1/people/match"
import requests
 
@@ -1560,8 +1567,10 @@ 

People enrichment

"email": "name@domain.io", "hashed_email": "8d935115b9ff4489f2d1f9249503cadf", "domain": "apollo.io", - "reveal_personal_emails": true, - "linkedin_url": "http://www.linkedin.com/in/tim-zheng-677ba010" + "linkedin_url": "http://www.linkedin.com/in/tim-zheng-677ba010", + "reveal_personal_emails": True, + "reveal_phone_number": True, + "webhook_url": "https://your_webhook_site" } headers = {