# Kizeo Forms — Pipedream Connect

> Mobile Forms Application

- API slug: `kizeo_forms` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Surveys & Forms
- Website: https://www.kizeo-forms.com/
- This page (HTML): https://pipedream.com/apps/kizeo-forms
- Tools: 4 actions · 2 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: kizeo_forms`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create User:
const result = await mcp.callTool({
  name: "kizeo_forms-create-user",
  arguments: {
    login: "Login",
    password: "Password",
  },
})
```

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

## API proxy

For a Kizeo Forms 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://www.kizeoforms.com/rest/v3/users

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly93d3cua2l6ZW9mb3Jtcy5jb20vcmVzdC92My91c2Vycw?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: "kizeo_forms-create-user",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    kizeo_forms: { authProvisionId: "apn_xxxxxxx" },
    login: "Login",
    password: "Password",
  },
})
```

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

## Actions (4)

### `kizeo_forms-create-user` — Create User (Write)

Creates a new user in the Kizeo Forms platform. See the documentation

Full schema: https://pipedream.com/apps/kizeo-forms/actions/create-user.md

### `kizeo_forms-export-form-data-to-csv-or-excel` — Export Form Data to CSV or Excel (Write)

Exports data from a form to CSV or Excel format. See the documentation

Full schema: https://pipedream.com/apps/kizeo-forms/actions/export-form-data-to-csv-or-excel.md

### `kizeo_forms-export-to-pdf` — Export to PDF (Read-only)

Exports data from a chosen export (Word or Excel) to PDF format. See the documentation

Full schema: https://pipedream.com/apps/kizeo-forms/actions/export-to-pdf.md

### `kizeo_forms-list-unread-form-data` — List Unread Form Data (Read-only)

Retrieves a list of unread form entries/data from Kizeo Forms. See the documentation

Full schema: https://pipedream.com/apps/kizeo-forms/actions/list-unread-form-data.md

## Triggers (2)

### `kizeo_forms-new-form` — New Form Created (Polling)

Emit new event when a new form is created on Kizeo Forms. See the documentation

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

### `kizeo_forms-new-form-data` — New Form Data Created (Polling)

Emit new event each time new form data is created in Kizeo Forms. See the documentation

Full schema: https://pipedream.com/apps/kizeo-forms/triggers/new-form-data.md

---

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