# Push Agency New Business to a Campaign

**Use case:** 

Sends a list of agency new business into a Instantly campaign, deduplicated against what is already there.

## Input

```json
{
  "sequencer": "instantly",
  "campaign_id": "REPLACE_WITH_CAMPAIGN_ID",
  "leads": [
    {
      "email": "alex.moreau@wpromote.com",
      "first_name": "Alex",
      "last_name": "Moreau",
      "company_name": "Agency New Business",
      "website": "wpromote.com"
    },
    {
      "email": "jordan.silva@wpromote.com",
      "first_name": "Jordan",
      "last_name": "Silva",
      "company_name": "Agency New Business",
      "website": "wpromote.com"
    }
  ],
  "dataset_id": "",
  "min_icp_score": 0,
  "deduplicate": true,
  "dry_run": true,
  "field_mapping": {},
  "custom_variables": [],
  "source_tag": "clay-to-instantly-smartlead-push:push-agency-new-business-to-a-campaign"
}
```

## Output

```json
{
  "sequencer": {
    "label": "Sequencer",
    "format": "string"
  },
  "campaign_id": {
    "label": "Campaign ID",
    "format": "string"
  },
  "dry_run": {
    "label": "Dry Run",
    "format": "boolean"
  },
  "total_leads_received": {
    "label": "Total Leads Received",
    "format": "integer"
  },
  "leads_invalid": {
    "label": "Leads Invalid",
    "format": "integer"
  },
  "leads_below_min_score": {
    "label": "Leads Below Min Score",
    "format": "integer"
  },
  "leads_deduplicated": {
    "label": "Leads Deduplicated",
    "format": "integer"
  },
  "leads_eligible": {
    "label": "Leads Eligible",
    "format": "integer"
  },
  "leads_pushed": {
    "label": "Leads Pushed",
    "format": "integer"
  },
  "leads_skipped_by_sequencer": {
    "label": "Leads Skipped By Sequencer",
    "format": "integer"
  },
  "leads_failed": {
    "label": "Leads Failed",
    "format": "integer"
  },
  "failed_emails": {
    "label": "Failed Emails",
    "format": "array"
  },
  "vendor_api_version": {
    "label": "Vendor API Version",
    "format": "string"
  },
  "dedupe_complete": {
    "label": "Dedupe Complete",
    "format": "boolean"
  },
  "is_summary_row": {
    "label": "Summary Row",
    "format": "boolean"
  },
  "notice": {
    "label": "Notice",
    "format": "string"
  },
  "run_date": {
    "label": "Run Date",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Sequencer Lead Push Instantly Smartlead Clay Outbound](https://apify.com/mambalabs/clay-to-instantly-smartlead-push.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mambalabs/clay-to-instantly-smartlead-push.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/mambalabs/clay-to-instantly-smartlead-push.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
