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.
All requests require an Authorization header using Bearer token authentication:
Authorization: Bearer <api_key>
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Identifier of the campaign. Required.
"camp_abc123"
Array of lead identifiers to remove. Each object must include phone_number or campaign_lead_id.
1[
{ "phone_number": "+14155552671" },
{
"campaign_lead_id": "VoiceCampaignLead:42"
}
]