Skip to main content
POST
/
campaigns
curl -X POST https://api.linkedcamp.com/campaigns \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Outreach Campaign",
    "url": "https://www.linkedin.com/search/results/people/?network=%5B%22S%22%5D&origin=FACETED_SEARCH&sid=Z6B",
    "sequence": "CONNECT",
    "content": {
      "longNote": "Hi {{firstName}}, I noticed we share similar interests. Would love to connect!",
      "shortNote": "Hi {{firstName}}, let'\''s connect!",
      "message1": "Thanks for connecting! I wanted to reach out about...",
      "message2": "Just following up on my previous message...",
      "message3": "Final follow-up - would love to hear your thoughts."
    }
  }'
{
  "success": true,
  "message": "Campaign created successfully!",
  "campaignId": "60f7a1b2c3d4e5f6a7b8c9d0"
}

Headers

token
string
required
Your LinkedCamp API token.

Body Parameters

title
string
required
The name of the campaign.
url
string
A LinkedIn search URL to source leads from. For example, a LinkedIn People Search URL with filters applied.
sequence
string
required
The type of outreach sequence to use.Available values: CONNECT, MESSAGE, INMAIL, EMAIL
content
object
required
The message content for each step of the sequence. Fields vary based on the sequence type.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
campaignId
string
The ID of the newly created campaign.
curl -X POST https://api.linkedcamp.com/campaigns \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Outreach Campaign",
    "url": "https://www.linkedin.com/search/results/people/?network=%5B%22S%22%5D&origin=FACETED_SEARCH&sid=Z6B",
    "sequence": "CONNECT",
    "content": {
      "longNote": "Hi {{firstName}}, I noticed we share similar interests. Would love to connect!",
      "shortNote": "Hi {{firstName}}, let'\''s connect!",
      "message1": "Thanks for connecting! I wanted to reach out about...",
      "message2": "Just following up on my previous message...",
      "message3": "Final follow-up - would love to hear your thoughts."
    }
  }'
{
  "success": true,
  "message": "Campaign created successfully!",
  "campaignId": "60f7a1b2c3d4e5f6a7b8c9d0"
}