Skip to main content
GET
/
webhooks
/
{webhookId}
curl -X GET https://api.linkedcamp.com/webhooks/60f7a1b2c3d4e5f6a7b8c9d0 \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Webhook found successfully!",
  "data": {
    "_id": "60f7a1b2c3d4e5f6a7b8c9d0",
    "callbackUrl": "https://your-server.com/webhook/linkedcamp",
    "title": "New Connection Webhook",
    "events": ["ACCEPTS_REQUEST"],
    "isValid": true
  }
}

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.

Path Parameters

webhookId
string
required
The ID of the webhook.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
data
object
The webhook details.
curl -X GET https://api.linkedcamp.com/webhooks/60f7a1b2c3d4e5f6a7b8c9d0 \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Webhook found successfully!",
  "data": {
    "_id": "60f7a1b2c3d4e5f6a7b8c9d0",
    "callbackUrl": "https://your-server.com/webhook/linkedcamp",
    "title": "New Connection Webhook",
    "events": ["ACCEPTS_REQUEST"],
    "isValid": true
  }
}