# Form.io — Pipedream Connect

> Form.io is a platform that enables you to build web and mobile applications. Create both the forms and the RESTful API's all in one easy step!

- API slug: `form_io` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Web & App Development
- Website: https://form.io/
- This page (HTML): https://pipedream.com/apps/form-io
- Tools: 20 actions · 0 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: form_io`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Form:
const result = await mcp.callTool({
  name: "form_io-create-form",
  arguments: {
    title: "Title",
    name: "Name",
  },
})
```

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

## API proxy

For a Form.io 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.example.com/v1/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZXhhbXBsZS5jb20vdjEvbWU?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: "form_io-create-form",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    form_io: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    name: "Name",
  },
})
```

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

## Actions (20)

### `form_io-create-form` — Create Form (Write)

Create a form or resource in Form.io. Use List Forms to review existing forms. The components prop is a JSON-string array of Form.io component schema objects. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/create-form.md

### `form_io-create-form-action` — Create Form Action (Write)

Attach an action (e.g. email, webhook, save) to a Form.io form. Use List Forms to find the form ID and List Form Actions to review existing actions. The settings prop is a JSON-string object specific to the action type. Example: actionType webhook, title Notify endpoint, handler [after], method…

Full schema: https://pipedream.com/apps/form-io/actions/create-form-action.md

### `form_io-create-role` — Create Role (Write)

Create a role in the Form.io project. Use List Roles to review existing roles. Example: title Reviewer, description Can review submissions → returns the new role with its _id. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/create-role.md

### `form_io-create-submission` — Create Submission (Write)

Create a submission for a Form.io form. Use List Forms to find the form ID. The data prop is a JSON-string object of field key-value pairs matching the form's component keys. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/create-submission.md

### `form_io-delete-form` — Delete Form (Write)

Permanently delete a form or resource from Form.io. Use List Forms to find the form ID. This is irreversible. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/delete-form.md

### `form_io-delete-form-action` — Delete Form Action (Write)

Permanently remove an action attached to a Form.io form. Use List Form Actions to find the action ID. This is irreversible. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/delete-form-action.md

### `form_io-delete-role` — Delete Role (Write)

Permanently delete a role from the Form.io project. Obtain the role ID from List Roles (it is the role's 24-character hex _id, e.g. 64f8a1b2c3d4e5f60718293a). This is irreversible. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/delete-role.md

### `form_io-delete-submission` — Delete Submission (Write)

Permanently delete a submission from a Form.io form. Use List Submissions to find the submission ID. This is irreversible. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/delete-submission.md

### `form_io-get-form` — Get Form (Read-only)

Retrieve a single form or resource by its ID from Form.io. Use List Forms to find the form ID. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/get-form.md

### `form_io-get-form-action` — Get Form Action (Read-only)

Retrieve a single action attached to a Form.io form. Use List Form Actions to find the action ID. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/get-form-action.md

### `form_io-get-role` — Get Role (Read-only)

Retrieve a single role by its ID from the Form.io project. Obtain the role ID from List Roles (it is the role's 24-character hex _id, e.g. 64f8a1b2c3d4e5f60718293a). See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/get-role.md

### `form_io-get-submission` — Get Submission (Read-only)

Retrieve a single submission for a Form.io form. Use List Forms to find the form ID and List Submissions to find the submission ID. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/get-submission.md

### `form_io-list-form-actions` — List Form Actions (Read-only)

List all actions attached to a Form.io form. Use List Forms to find the form ID. Form.io returns up to limit records (default 10); if you receive a full page there may be more — raise limit (up to 1000) or page with skip to retrieve them all. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/list-form-actions.md

### `form_io-list-forms` — List Forms (Read-only)

List forms and resources in the Form.io project. Optionally filter by type to return only forms or only resources. Form.io returns up to limit records (default 10); if you receive a full page there may be more — raise limit (up to 1000) or page with skip to retrieve them all. Forms are large; pass…

Full schema: https://pipedream.com/apps/form-io/actions/list-forms.md

### `form_io-list-roles` — List Roles (Read-only)

List all roles in the Form.io project, including the built-in Administrator, Authenticated, and Anonymous roles. Form.io returns up to limit records (default 10); if you receive a full page there may be more — raise limit (up to 1000) or page with skip to retrieve them all. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/list-roles.md

### `form_io-list-submissions` — List Submissions (Read-only)

List submissions for a Form.io form. Optionally filter by state. Use List Forms to find the form ID. Form.io returns up to limit records (default 10); if you receive a full page there may be more — raise limit (up to 1000) or page with skip to retrieve them all. Pass fields to return only the…

Full schema: https://pipedream.com/apps/form-io/actions/list-submissions.md

### `form_io-update-form` — Update Form (Write)

Update a form or resource in Form.io. Only the fields you provide are changed; omitted fields keep their current values. Use List Forms to find the form ID. The components prop is a JSON-string array of Form.io component schema objects. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/update-form.md

### `form_io-update-form-action` — Update Form Action (Write)

Update an action attached to a Form.io form. Only the fields you provide are changed; omitted fields keep their current values. Use List Form Actions to find the action ID. The settings prop is a JSON-string object specific to the action type. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/update-form-action.md

### `form_io-update-role` — Update Role (Write)

Update a role in the Form.io project. Only the fields you provide are changed; omitted fields keep their current values. Obtain the role ID from List Roles (it is the role's 24-character hex _id, e.g. 64f8a1b2c3d4e5f60718293a). Example: for roleId 64f8a1b2c3d4e5f60718293a, set description to…

Full schema: https://pipedream.com/apps/form-io/actions/update-role.md

### `form_io-update-submission` — Update Submission (Write)

Update a submission for a Form.io form. Only the fields you provide are changed; omitted fields keep their current values. Use List Submissions to find the submission ID. The data prop is a JSON-string object of field key-value pairs. See the documentation.

Full schema: https://pipedream.com/apps/form-io/actions/update-submission.md

---

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