Skip to main content
POST
/
webhooks
curl -X POST https://api.linkedcamp.com/webhooks \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "New Connection Webhook",
    "callbackUrl": "https://your-server.com/webhook/linkedcamp",
    "event": "ACCEPTS_REQUEST"
  }'
{
  "success": true,
  "message": "Webhook added successfully!"
}

Documentation Index

Fetch the complete documentation index at: https://docs.linkedcamp.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

token
string
required
Your LinkedCamp API token.

Body Parameters

title
string
required
A descriptive name for the webhook.
callbackUrl
string
required
The URL that will receive webhook POST requests when the event occurs.
event
string
required
The event type that triggers the webhook.Available values:
EventDescription
CONNECT_INVITEDA connection request was sent
ACCEPTS_REQUESTA connection request was accepted
REPLY_DETECTEDA reply was received from a prospect
EMAIL_SENTAn email was sent
OPENEDAn email was opened
BOUNCEDAn email bounced
CLICKEDA link in an email was clicked
UNSUBSCRIBEDA prospect unsubscribed

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
curl -X POST https://api.linkedcamp.com/webhooks \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "New Connection Webhook",
    "callbackUrl": "https://your-server.com/webhook/linkedcamp",
    "event": "ACCEPTS_REQUEST"
  }'
{
  "success": true,
  "message": "Webhook added successfully!"
}