# Booking Experts — Pipedream Connect

> The best way to build your recreation business.

- API slug: `booking_experts` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Travel
- Website: https://www.bookingexperts.com
- This page (HTML): https://pipedream.com/apps/booking-experts
- Tools: 24 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: booking_experts`

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Guest to Reservation:
const result = await mcp.callTool({
  name: "booking_experts-add-guest-to-reservation",
  arguments: {
    administrationId: "Administration ID",
    reservationId: "Reservation ID",
  },
})
```

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

## API proxy

For a Booking Experts 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.bookingexperts.com/v3/users

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuYm9va2luZ2V4cGVydHMuY29tL3YzL3VzZXJz?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: "booking_experts-add-guest-to-reservation",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    booking_experts: { authProvisionId: "apn_xxxxxxx" },
    administrationId: "Administration ID",
    reservationId: "Reservation ID",
  },
})
```

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

## Actions (24)

### `booking_experts-add-guest-to-reservation` — Add Guest to Reservation (Write)

Add a guest to a reservation. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/add-guest-to-reservation.md

### `booking_experts-create-agenda-period` — Create Agenda Period (Write)

Creates a new agenda period. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/create-agenda-period.md

### `booking_experts-delete-guest` — Delete Guest (Write)

Delete a guest for a reservation. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/delete-guest.md

### `booking_experts-get-amenity` — Get Amenity (Read-only)

Retrieve a single amenity by ID. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/get-amenity.md

### `booking_experts-get-booking` — Get Booking (Write)

Returns a booking. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/get-booking.md

### `booking_experts-get-complex-prices` — Get Complex Prices (Write)

Returns all complex prices of a master price list. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/get-complex-prices.md

### `booking_experts-get-guest` — Get Guest (Read-only)

Get a guest by ID. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/get-guest.md

### `booking_experts-get-rentable-type` — Get Rentable Type (Read-only)

Returns a rentable type. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/get-rentable-type.md

### `booking_experts-get-reservation` — Get Reservation (Read-only)

Fetches a reservation by ID from Booking Experts. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/get-reservation.md

### `booking_experts-list-administration-id-options` — List Administration ID Options (Read-only)

Retrieves available options for the Administration ID field.

Full schema: https://pipedream.com/apps/booking-experts/actions/list-administration-id-options.md

### `booking_experts-list-amenities` — List Amenities (Read-only)

List amenities from BookingExperts. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/list-amenities.md

### `booking_experts-list-amenity-group-id-options` — List Amenity Group ID Options (Read-only)

Retrieves available options for the Amenity Group ID field.

Full schema: https://pipedream.com/apps/booking-experts/actions/list-amenity-group-id-options.md

### `booking_experts-list-amenity-id-options` — List Amenity ID Options (Read-only)

Retrieves available options for the Amenity ID field.

Full schema: https://pipedream.com/apps/booking-experts/actions/list-amenity-id-options.md

### `booking_experts-list-availabilities` — List Availabilities (Read-only)

List availabilities of a channel you have access to. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/list-availabilities.md

### `booking_experts-list-bookings` — List Bookings (Write)

Returns a list of bookings for an administration. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/list-bookings.md

### `booking_experts-list-channel-id-options` — List Channel ID Options (Read-only)

Retrieves available options for the Channel ID field.

Full schema: https://pipedream.com/apps/booking-experts/actions/list-channel-id-options.md

### `booking_experts-list-guests` — List Guests (Read-only)

List all guests for a reservation. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/list-guests.md

### `booking_experts-list-inventory-objects` — List Inventory Objects (Write)

Returns inventory objects of the administration. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/list-inventory-objects.md

### `booking_experts-list-rentable-segment-id-options` — List Rentable Segment ID Options (Read-only)

Retrieves available options for the Rentable Segment ID field.

Full schema: https://pipedream.com/apps/booking-experts/actions/list-rentable-segment-id-options.md

### `booking_experts-list-rentable-types` — List Rentable Types (Read-only)

List all rentable types for a given administration. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/list-rentable-types.md

### `booking_experts-list-rentabletype-availabilities` — List RentableType Availabilities (Read-only)

List availabilities of a RentableType you have access to. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/list-rentabletype-availabilities.md

### `booking_experts-list-reservations` — List Reservations (Read-only)

Lists all reservations for the current organization from Booking Experts. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/list-reservations.md

### `booking_experts-search-contacts` — Search Contacts (Read-only)

Search for contacts by email or phone. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/search-contacts.md

### `booking_experts-update-guest` — Update Guest (Write)

Update a guest for a reservation. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/actions/update-guest.md

## Triggers (4)

### `booking_experts-booking-updated` — Booking Updated (Polling)

Emit new event for each booking updated. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/triggers/booking-updated.md

### `booking_experts-inventory-object-updated` — Inventory Object Updated (Polling)

Emit new event when an inventory object is updated. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/triggers/inventory-object-updated.md

### `booking_experts-new-booking-created` — New Booking Created (Polling)

Emit new event for each new booking created. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/triggers/new-booking-created.md

### `booking_experts-new-inventory-object-created` — New Inventory Object Created (Polling)

Emit new event when a new inventory object is created. See the documentation

Full schema: https://pipedream.com/apps/booking-experts/triggers/new-inventory-object-created.md

---

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