# GetResponse — Pipedream Connect

> Trusted Inbound Marketing Software

- API slug: `getresponse` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Marketing
- Website: https://getresponse.com
- This page (HTML): https://pipedream.com/apps/getresponse
- Tools: 6 actions · 4 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: getresponse`

```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": "getresponse",
      },
    },
  },
)

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: "getresponse-create-contact",
  arguments: {
    campaignId: "Campaign ID",
    email: "Email",
  },
})
```

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

## API proxy

For a GetResponse 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.getresponse.com/v3/accounts

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZ2V0cmVzcG9uc2UuY29tL3YzL2FjY291bnRz?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: "getresponse-create-contact",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    getresponse: { authProvisionId: "apn_xxxxxxx" },
    campaignId: "Campaign ID",
    email: "Email",
  },
})
```

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

## Actions (6)

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

Creates a contact. See the docs here

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

### `getresponse-create-newsletter` — Create Newsletter (Write)

Creates a new newsletter and puts it in a queue to send. See the docs here

Full schema: https://pipedream.com/apps/getresponse/actions/create-newsletter.md

### `getresponse-create-or-update-contact` — Create or Update Contact (Write)

Creates or updates a contact if already exists. See the docs here

Full schema: https://pipedream.com/apps/getresponse/actions/create-or-update-contact.md

### `getresponse-find-campaign-list` — Find Campaign List (Read-only)

Finds a campaign list by filters. See the docs here

Full schema: https://pipedream.com/apps/getresponse/actions/find-campaign-list.md

### `getresponse-find-contact` — Find Contact (Read-only)

Finds a contact by filters. See the docs here

Full schema: https://pipedream.com/apps/getresponse/actions/find-contact.md

### `getresponse-list-from-field-id-options` — List From Field ID Options (Read-only)

Retrieves available options for the From Field ID field.

Full schema: https://pipedream.com/apps/getresponse/actions/list-from-field-id-options.md

## Triggers (4)

### `getresponse-new-contact` — New Contact (Polling)

Emit new event when a contact is created. See the docs here

Full schema: https://pipedream.com/apps/getresponse/triggers/new-contact.md

### `getresponse-new-form` — New Form (Polling)

Emit new event when a form is created. See the docs here

Full schema: https://pipedream.com/apps/getresponse/triggers/new-form.md

### `getresponse-new-landing-page` — New Landing Page (Polling)

Emit new event when a landing page is created. See the docs here

Full schema: https://pipedream.com/apps/getresponse/triggers/new-landing-page.md

### `getresponse-new-newsletter` — New Newsletter (Polling)

Emit new event when a newsletter is created. See the docs here

Full schema: https://pipedream.com/apps/getresponse/triggers/new-newsletter.md

---

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