Skip to main content
PUT
/
v1
/
campaigns
/
{campaignId}
/
start
Start Campaign
curl --request PUT \
  --url https://app-api.walead.ai/api/v1/campaigns/{campaignId}/start \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "Campaign started"
}

Overview

Starts a paused or draft campaign. The campaign must have at least one LinkedIn account and one lead to be started.

Requirements

Before starting a campaign, ensure:
  • At least one LinkedIn account is connected
  • At least one lead has been added
  • Campaign is in paused or draft status

Response

Returns a success message when the campaign is started successfully. The campaign status will change to active and lead processing will begin.

Authorizations

x-api-key
string
header
required

API key for authentication. Generate from your WaLead dashboard.

Path Parameters

campaignId
string
required

Campaign ID

Response

Campaign started successfully

success
boolean
Example:

true

message
string
Example:

"Campaign started"