curl --request POST \
--url https://public-api.lonescale.com/trigger/enrich \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"enrichment_type": [
"email",
"phone"
],
"contacts": [
{
"firstname": "John",
"lastname": "Doe",
"email": "[email protected]",
"job_title": "ceo",
"linkedin_url": "https://www.linkedin.com/in/john-doe/",
"domain": "acme.com",
"company_name": "Acmeo",
"custom": {
"contact_id": "44479301"
}
}
],
"webhook_url": "https://api.example.com/webhooks/enrichment",
"custom": {
"provider": "lonescale",
"enrichment_type": "email and phone"
}
}
'