Skip to main content
GET
/
api
/
v1
/
campaigns
/
{campaign_id}
/
webhooks
curl "https://server.smartlead.ai/api/v1/campaigns/123/webhooks?api_key=YOUR_KEY"
{
  "success": true,
  "data": [
    {
      "id": 456,
      "name": "CRM Integration",
      "webhook_url": "https://crm.example.com/webhook",
      "event_types": ["LEAD_REPLIED", "LEAD_OPENED"],
      "is_active": true
    }
  ]
}
View all webhook integrations set up for campaign events. Essential for managing integrations with external systems.

Path Parameters

campaign_id
number
required
Campaign ID

Query Parameters

api_key
string
required
Your SmartLead API key
curl "https://server.smartlead.ai/api/v1/campaigns/123/webhooks?api_key=YOUR_KEY"

Response Example

{
  "success": true,
  "data": [
    {
      "id": 456,
      "name": "CRM Integration",
      "webhook_url": "https://crm.example.com/webhook",
      "event_types": ["LEAD_REPLIED", "LEAD_OPENED"],
      "is_active": true
    }
  ]
}