# WaiverFile — Pipedream Connect

> WaiverFile lets your customers sign their release waivers from a computer, tablet or mobile device. From your website or at a kiosk, completing the forms is quick and easy.

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Event Category:
const result = await mcp.callTool({
  name: "waiverfile-create-event-category",
  arguments: {
    name: "Category Name",
    active: true,
  },
})
```

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

## API proxy

For a WaiverFile 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.waiverfile.com/api/v1/GetSiteDetails

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkud2FpdmVyZmlsZS5jb20vYXBpL3YxL0dldFNpdGVEZXRhaWxz?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: "waiverfile-create-event-category",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    waiverfile: { authProvisionId: "apn_xxxxxxx" },
    name: "Category Name",
    active: true,
  },
})
```

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

## Actions (6)

### `waiverfile-create-event-category` — Create Event Category (Write)

Creates a new event category in WaiverFile. See the documentation

Full schema: https://pipedream.com/apps/waiverfile/actions/create-event-category.md

### `waiverfile-list-category-id-options` — List Category ID Options (Read-only)

Retrieves available options for the Category ID field.

Full schema: https://pipedream.com/apps/waiverfile/actions/list-category-id-options.md

### `waiverfile-list-event-id-options` — List Event ID Options (Read-only)

Retrieves available options for the Event ID field.

Full schema: https://pipedream.com/apps/waiverfile/actions/list-event-id-options.md

### `waiverfile-list-waiver-form-ids-options` — List Waiver Form IDs Options (Read-only)

Retrieves available options for the Waiver Form IDs field.

Full schema: https://pipedream.com/apps/waiverfile/actions/list-waiver-form-ids-options.md

### `waiverfile-search-waivers` — Search Waivers (Read-only)

Searches for waivers in WaiverFile based on specific keywords. See the documentation

Full schema: https://pipedream.com/apps/waiverfile/actions/search-waivers.md

### `waiverfile-update-event` — Update Event (Write)

Updates the details of an existing event in WaiverFile. See the documentation

Full schema: https://pipedream.com/apps/waiverfile/actions/update-event.md

## Triggers (3)

### `waiverfile-edit-event-instant` — Edit Event (Instant) (Instant)

Emit new event when an existing event in WaiverFile is edited. See the documentation

Full schema: https://pipedream.com/apps/waiverfile/triggers/edit-event-instant.md

### `waiverfile-new-event-instant` — New Event (Instant) (Instant)

Emit new event when a new event is created in Waiverfile. See the documentation

Full schema: https://pipedream.com/apps/waiverfile/triggers/new-event-instant.md

### `waiverfile-new-waiver-instant` — New Waiver (Instant) (Instant)

Emit new event each time a new waiver is collected in WaiverFile. See the documentation

Full schema: https://pipedream.com/apps/waiverfile/triggers/new-waiver-instant.md

---

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