create_webhook_endpoint
Register a URL to be called when something happens on LinkedIn, so an agent or an n8n/Make workflow can react instead of polling. Returns the signing secret ONCE; deliveries carry 'Reach-Signature: t=,v1=<hex HMAC-SHA256(secret, t + '.' + body)>'. Events: message.received, connection.new, account.status_changed, quota.threshold_reached, quota.reached, or '*' for all. Omit account_ids to subscribe for every account of the user. https only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | https URL that accepts a JSON POST. | |
| events | Yes | Event types, or ['*']. | |
| account_ids | No | Optional: only these LinkedIn account ids. | |
| description | No | Free-text label for your own reference. | |
| idempotency_key | No | Optional. A key you choose (a UUID is fine) that names this exact call. If you retry with the same key and the same arguments, the first call's result is returned and nothing is done twice on LinkedIn. Reusing a key with different arguments is refused. Keys expire after 24 hours. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| url | No | ||
| note | No | ||
| events | No | ||
| secret | No | Signing secret, returned once | |
| is_active | No | ||
| created_at | No | ||
| account_ids | No | ||
| description | No | ||
| disabled_reason | No | ||
| last_delivery_at | No | ||
| consecutive_failures | No |