curl --location --request POST 'https://your-api-server.com' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"event": "webhook:company_follower_result.completed",
"batchId": "abc123",
"timestamp": "2026-02-08T12:00:00.000Z",
"data": {
"companyUrl": "https://linkedin.com/company/stripe",
"follower": {
"objectURN": "urn:li:member:123456",
"name": "Jane Smith",
"firstName": "Jane",
"lastName": "Smith",
"profileUrl": "https://www.linkedin.com/in/janesmith",
"title": "Senior Engineer",
"companyName": "Acme Corp",
"industry": "Technology",
"connectionDegree": 2,
"isPremium": false,
"isOpenProfile": true
}
}
}'