Your Implementation Required
This endpoint must be implemented on your server
Enginy calls this endpoint to create companies in your CRM when exporting.
Request
Array of company objects to create
Company Object
Enginy’s internal company ID. Use this to map responses back.
Company domain (e.g., “acme.com”)
LinkedIn company page URL
{
"companies": [
{
"externalId": "company-123",
"name": "Acme Corporation",
"domain": "acme.com",
"industry": "Technology",
"employeeCount": 500,
"linkedinUrl": "https://linkedin.com/company/acme"
}
]
}
Response
Array of created company mappings
The externalId from the request
Your CRM’s ID for this company
{
"results": [
{
"externalId": "company-123",
"crmId": "account_4k8j2m"
}
]
}
Enginy sends companies in batches of up to 100 companies per request.