Bulk Remove Leads from Campaign
Leads (v2)
Bulk Remove Leads from Campaign
Removes multiple leads from the specified campaign in a single request. Each item is processed individually and per-lead results are returned. Each item must include either a phone_number or a campaign_lead_id. When both are provided, campaign_lead_id takes precedence.
Authentication
All requests require an Authorization header using Bearer token authentication:
Authorization: Bearer <api_key>
DELETE
Bulk Remove Leads from Campaign
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Identifier of the campaign. Required.
Example:
"camp_abc123"
Body
application/json
Array of lead identifiers to remove. Each object must include phone_number or campaign_lead_id.
Minimum array length:
1Example:
[
{ "phone_number": "+14155552671" },
{
"campaign_lead_id": "VoiceCampaignLead:42"
}
]
