# Prepare Complete B2B Leads for CRM Import

**Use case:** 

Run five complete B2B records through the quality gate. Every row returns ACCEPT, score 100, null primary reason, normalized fields, and originalPreserved true.

## Input

```json
{
  "rows": [
    {
      "full_name": "Sofia Bennett (sample)",
      "job_title": "VP Sales",
      "email": "apify-task-demo-401@hubspot.com",
      "phone": "+1 202-555-0101",
      "linkedin": "https://www.linkedin.com/in/apify-task-demo-401",
      "country": "United States",
      "city": "Boston",
      "company_name": "HubSpot",
      "company_domain": "hubspot.com",
      "industry": "Software",
      "updated_at": "2026-07-20T12:00:00Z"
    },
    {
      "full_name": "Marcus Reed (sample)",
      "job_title": "Revenue Operations Manager",
      "email": "apify-task-demo-402@stripe.com",
      "phone": "+1 202-555-0102",
      "linkedin": "https://www.linkedin.com/in/apify-task-demo-402",
      "country": "United States",
      "city": "San Francisco",
      "company_name": "Stripe",
      "company_domain": "stripe.com",
      "industry": "Financial Technology",
      "updated_at": "2026-07-20T12:00:00Z"
    },
    {
      "full_name": "Priya Nair (sample)",
      "job_title": "Head of Growth",
      "email": "apify-task-demo-403@canva.com",
      "phone": "+61 2 5550 0103",
      "linkedin": "https://www.linkedin.com/in/apify-task-demo-403",
      "country": "Australia",
      "city": "Sydney",
      "company_name": "Canva",
      "company_domain": "canva.com",
      "industry": "Software",
      "updated_at": "2026-07-20T12:00:00Z"
    },
    {
      "full_name": "Daniel Kim (sample)",
      "job_title": "Sales Director",
      "email": "apify-task-demo-404@asana.com",
      "phone": "+1 202-555-0104",
      "linkedin": "https://www.linkedin.com/in/apify-task-demo-404",
      "country": "United States",
      "city": "New York",
      "company_name": "Asana",
      "company_domain": "asana.com",
      "industry": "SaaS",
      "updated_at": "2026-07-20T12:00:00Z"
    },
    {
      "full_name": "Lena Fischer (sample)",
      "job_title": "VP Marketing",
      "email": "apify-task-demo-405@slack.com",
      "phone": "+49 30 5550 0105",
      "linkedin": "https://www.linkedin.com/in/apify-task-demo-405",
      "country": "Germany",
      "city": "Berlin",
      "company_name": "Slack",
      "company_domain": "slack.com",
      "industry": "Software",
      "updated_at": "2026-07-20T12:00:00Z"
    }
  ],
  "qualityMode": "BALANCED",
  "offset": 0,
  "maxItems": 5,
  "maxConcurrency": 10
}
```

## Output

```json
{
  "decision": {
    "label": "Decision",
    "format": "string"
  },
  "qualityScore": {
    "label": "Quality score",
    "format": "integer"
  },
  "fullName": {
    "label": "Full name",
    "format": "string"
  },
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "email": {
    "label": "Email",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "linkedin": {
    "label": "LinkedIn",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "companyDomain": {
    "label": "Company domain",
    "format": "string"
  },
  "industry": {
    "label": "Industry",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "normalizationTruncatedFields": {
    "label": "Truncated normalized fields",
    "format": "array"
  },
  "originalPreserved": {
    "label": "Original preserved",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [B2B Lead List Cleaner - Bulk Email Verification & Validator](https://apify.com/kamerozkan/b2b-lead-cleaner) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kamerozkan/b2b-lead-cleaner) 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/kamerozkan/b2b-lead-cleaner.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).
