Skip to main content
This webhook is called when the company insights enrichment is complete. The payload contains the results of the enrichment. If your webhook endpoint is unavailable or returns an error, we will retry the request up to 3 times with exponential backoff.

Webhook Payload Examples

{
  "enrichment_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
  "results": [
    {
      "company_website": "https://www.preceptai.co.uk",
      "company_linkedin": "https://www.linkedin.com/company/precept-ai",
      "custom_data": {
        "id": "12345",
        "crm_id": "01234"
      },
      "company_data": {
        "id": 12345,
        "company_name": "Precept AI",
        "website": "https://www.preceptai.co.uk"
      }
    },
    {
      "company_website": "https://www.unknown-company.com",
      "company_linkedin": "LinkedIn URL not found",
      "error": "Company not found"
    },
    {
      "company_website": "https://www.preceptai.co.uk",
      "company_data": {
        "id": 12345,
        "company_name": "Precept AI",
        "website": "https://www.preceptai.co.uk"
      },
      "enrichment_errors": {
        "queries": "Failed to retrieve information for the query: 'What is their annual revenue?'"
      }
    }
  ]
}