Skip to main content
GET
/
v1
/
campaigns
/
{campaignId}
/
senders
Get Campaign Senders
curl --request GET \
  --url https://app-api.walead.ai/api/v1/campaigns/{campaignId}/senders \
  --header 'x-api-key: <api-key>'
{
  "campaignId": "<string>",
  "campaignName": "<string>",
  "total": 123,
  "senders": [
    {
      "id": "<string>",
      "firstName": "<string>",
      "lastName": "<string>"
    }
  ]
}

Overview

Retrieves all LinkedIn accounts (senders) associated with a specific campaign. These are the accounts that will send connection requests and messages to leads in the campaign.

Response

Returns the campaign information along with all associated LinkedIn accounts, including their names and IDs.

Use Cases

  • View which LinkedIn accounts are assigned to a campaign
  • Verify sender configuration before starting a campaign
  • Audit campaign sender distribution

Authorizations

x-api-key
string
header
required

API key for authentication. Generate from your WaLead dashboard.

Path Parameters

campaignId
string
required

Campaign ID

Response

Senders retrieved successfully

campaignId
string

Campaign ID

campaignName
string

Campaign name

total
integer

Total number of senders

senders
object[]