Skip to main content
PUT
/
leads
/
{leadId}
curl -X PUT "https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0?status=PAUSE" \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Lead PAUSE successfully"
}

Headers

token
string
required
Your LinkedCamp API token.

Path Parameters

leadId
string
required
The ID of the lead.

Query Parameters

status
string
required
The action to perform on the lead.Available values:
  • PAUSE - Pause outreach to this lead
  • RESUME - Resume outreach to this lead
  • DELETED - Soft-delete the lead from the campaign

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
curl -X PUT "https://api.linkedcamp.com/leads/60f7a1b2c3d4e5f6a7b8c9d0?status=PAUSE" \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Lead PAUSE successfully"
}