v1

latestOpenAPI 3.1.02026-07-26103879.6 KB

Enrich Contacts In Bulk

post/contact/enrich/bulk

Request body

namestring required

A readable name for this enrichment (visible in your dashboard)

webhook_urlstring

URL that will receive a POST request when the entire enrichment is finished (all contacts processed).

Example request

{
  "name": "Sales Operations in London",
  "webhook_url": "https://example.com/webhook",
  "webhook_events": {
    "contact_finished": "https://example.com/webhook/contact"
  },
  "data": [
    {
      "first_name": "John",
      "last_name": "Snow",
      "domain": "example.com",
      "company_name": "Example Inc",
      "professional_network_url": "https://www.linkedin.com/in/demoge/",
      "enrich_fields": [
        "contact.work_emails",
        "contact.personal_emails",
        "contact.phones"
      ],
      "custom": {
        "user_id": "12584"
      }
    }
  ]
}

Response

OK

enrichment_idstring uuid

Example response

{
  "enrichment_id": "2db5ea61-1752-42cf-8ea1-ab1da060cd0a"
}