# Zendesk Sell — Pipedream Connect

> Our modern sales CRM frees you to maximize productivity, maintain pipeline visibility, and grow revenue.

- API slug: `zendesk_sell` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: CRM
- Website: https://www.zendesk.com/sell/
- This page (HTML): https://pipedream.com/apps/zendesk-sell
- Tools: 6 actions · 3 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: zendesk_sell`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "zendesk_sell",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create Contact:
const result = await mcp.callTool({
  name: "zendesk_sell-create-contact",
  arguments: {
    isOrganization: true,
    status: "Status",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Zendesk Sell endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.getbase.com/v2/users/self

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZ2V0YmFzZS5jb20vdjIvdXNlcnMvc2VsZg?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "zendesk_sell-create-contact",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zendesk_sell: { authProvisionId: "apn_xxxxxxx" },
    isOrganization: true,
    status: "Status",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (6)

### `zendesk_sell-create-contact` — Create Contact (Write)

Creates a new contact. See the documentation.

Full schema: https://pipedream.com/apps/zendesk-sell/actions/create-contact.md

### `zendesk_sell-create-lead` — Create Lead (Write)

Creates a new lead. See the documentation.

Full schema: https://pipedream.com/apps/zendesk-sell/actions/create-lead.md

### `zendesk_sell-create-task` — Create Task (Write)

Creates a new task. See the documentation.

Full schema: https://pipedream.com/apps/zendesk-sell/actions/create-task.md

### `zendesk_sell-list-contact-id-options` — List Contact ID Options (Read-only)

Retrieves available options for the Contact ID field.

Full schema: https://pipedream.com/apps/zendesk-sell/actions/list-contact-id-options.md

### `zendesk_sell-list-deal-id-options` — List Deal ID Options (Read-only)

Retrieves available options for the Deal ID field.

Full schema: https://pipedream.com/apps/zendesk-sell/actions/list-deal-id-options.md

### `zendesk_sell-list-lead-id-options` — List Lead ID Options (Read-only)

Retrieves available options for the Lead ID field.

Full schema: https://pipedream.com/apps/zendesk-sell/actions/list-lead-id-options.md

## Triggers (3)

### `zendesk_sell-new-contact-created` — New Contact Created (Polling)

Emit new event when a new contact is created in Zendesk Sell.

Full schema: https://pipedream.com/apps/zendesk-sell/triggers/new-contact-created.md

### `zendesk_sell-new-deal-created` — New Deal Created (Polling)

Emit new event when a new deal is created in Zendesk Sell.

Full schema: https://pipedream.com/apps/zendesk-sell/triggers/new-deal-created.md

### `zendesk_sell-new-lead-created` — New Lead Created (Polling)

Emit new event when a new lead is created in Zendesk Sell.

Full schema: https://pipedream.com/apps/zendesk-sell/triggers/new-lead-created.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
