# Waitwhile — Pipedream Connect

> Waitwhile is a virtual waitlist app and queue management platform that can be customized to work for any business.

- API slug: `waitwhile` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Business Management
- Website: https://waitwhile.com/
- This page (HTML): https://pipedream.com/apps/waitwhile
- Tools: 18 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: waitwhile`

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Customer Note Entry:
const result = await mcp.callTool({
  name: "waitwhile-add-customer-note-entry",
  arguments: {
    customerId: "Customer ID",
    locationId: "Location ID",
  },
})
```

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

## API proxy

For a Waitwhile 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.waitwhile.com/v2/users

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkud2FpdHdoaWxlLmNvbS92Mi91c2Vycw?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: "waitwhile-add-customer-note-entry",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    waitwhile: { authProvisionId: "apn_xxxxxxx" },
    customerId: "Customer ID",
    locationId: "Location ID",
  },
})
```

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

## Actions (18)

### `waitwhile-add-customer-note-entry` — Add Customer Note Entry (Write)

Add a customer note entry. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/add-customer-note-entry.md

### `waitwhile-create-customer` — Create Customer (Write)

Create a customer. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/create-customer.md

### `waitwhile-create-user-invite` — Create User Invite (Write)

Create a user invite. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/create-user-invite.md

### `waitwhile-delete-customer-note-entry` — Delete Customer Note Entry (Write)

Delete a customer note entry. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/delete-customer-note-entry.md

### `waitwhile-export-customers` — Export Customers (Read-only)

Export Customers to CSV or JSON format. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/export-customers.md

### `waitwhile-get-customer-note-id` — Get Customer Note Id (Read-only)

Get customer note by ID. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/get-customer-note-id.md

### `waitwhile-import-customers` — Import Customers (Write)

Import customers. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/import-customers.md

### `waitwhile-list-customer-note-entries` — List Customer Note Entries (Read-only)

List customer note entries. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/list-customer-note-entries.md

### `waitwhile-list-customers` — List Customers (Read-only)

List of customers. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/list-customers.md

### `waitwhile-list-user-invites` — List User Invites (Read-only)

List of user invites. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/list-user-invites.md

### `waitwhile-remove-customer` — Remove Customer (Write)

Remove a customer. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/remove-customer.md

### `waitwhile-remove-user-invite` — Remove User Invite (Write)

Remove a user invite. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/remove-user-invite.md

### `waitwhile-resend-user-invite` — Resend User Invite (Write)

Resend a user invite. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/resend-user-invite.md

### `waitwhile-retrieve-customer` — Retrieve Customer (Read-only)

Retrieve a customer. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/retrieve-customer.md

### `waitwhile-retrieve-user-invite` — Retrieve User Invite (Read-only)

Retrieve a user invite. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/retrieve-user-invite.md

### `waitwhile-search-customers` — Search Customers (Read-only)

Search for customers. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/search-customers.md

### `waitwhile-update-customer` — Update Customer (Write)

Update a customer. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/update-customer.md

### `waitwhile-update-customer-note-entry` — Update Customer Note Entry (Write)

Update a customer note entry. See the doc here

Full schema: https://pipedream.com/apps/waitwhile/actions/update-customer-note-entry.md

---

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