Leads in campaigns
GET
/campaigns/{id}/leads

The leads in a campaign and each one's progress (step, invite sent/accepted, replied, interest).

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings → API & Webhooks.

In: header

Path Parameters

id*string

Query Parameters

limit?integer

Page size, 1–100.

Range1 <= value <= 100
Default50
offset?integer

Number of records to skip.

Range0 <= value
Default0
status?string

Only return leads at this progress status in the campaign.

Value in

  • "pending"
  • "running"
  • "done"
  • "failed"
  • "paused"
  • "replied"
  • "stopped"

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/campaigns/string/leads"
{  "data": [    {      "campaignId": "string",      "leadId": "string",      "linkedinAccountId": "string",      "status": "pending",      "firstName": "string",      "lastName": "string",      "headline": "string",      "company": "string",      "picture": "string",      "profileUrl": "string",      "publicIdentifier": "string",      "openProfile": true,      "customVariables": {        "property1": "string",        "property2": "string"      },      "interest": "interested",      "interestBy": "manual",      "currentStepId": "string",      "waitUntil": "2019-08-24T14:15:22Z",      "invitationSentAt": "2019-08-24T14:15:22Z",      "invitationAccepted": true,      "invitationAcceptedAt": "2019-08-24T14:15:22Z",      "invitationWithdrawnAt": "2019-08-24T14:15:22Z",      "messageSentAt": "2019-08-24T14:15:22Z",      "lastReplyAt": "2019-08-24T14:15:22Z",      "finishedAt": "2019-08-24T14:15:22Z",      "error": "string",      "createdAt": "2019-08-24T14:15:22Z"    }  ],  "paging": {    "limit": 0,    "offset": 0  }}