CONNECT APP
Build with Booking Experts
Travel
- API key
MCP
Give your agent Booking Experts tools
Every Booking Experts action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Booking Experts account for each tool call — you store no tokens.
// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{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",
},
})# access_token: mint a short-lived token with the Connect SDK — see the MCP guide
headers = {
"Authorization": f"Bearer {access_token}",
"x-pd-project-id": "{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",
}
async with streamablehttp_client("https://remote.mcp.pipedream.net/v3", headers=headers) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
# e.g. run Add Guest to Reservation:
result = await session.call_tool("booking_experts-add-guest-to-reservation", {
"administrationId": "Administration ID",
"reservationId": "Reservation ID",
})API PROXY
Call the Booking Experts API directly
For an endpoint with no pre-built tool, the Connect proxy forwards your request to the Booking Experts API with the connected user's credentials attached. You store no tokens and write no refresh logic.
const resp = await pd.proxy.get({
externalUserId: "{external_user_id}", // any stable ID for this user in your system
accountId: "apn_xxxxxxx",
url: "https://api.bookingexperts.com/v3/users",
})
// Any allowed Booking Experts endpoint works here. Pipedream attaches the
// connected account's credentials to the outgoing request.# 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"SDK
Run Booking Experts actions from your backend
Connect a user's Booking Experts account once, then run Add Guest to Reservation on their behalf from your own code — TypeScript, Python, or plain HTTP.
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",
},
})from pipedream import Pipedream
pd = Pipedream(
client_id="{oauth_client_id}",
client_secret="{oauth_client_secret}",
project_id="{project_id}",
project_environment="production",
)
result = pd.actions.run(
id="booking_experts-add-guest-to-reservation",
external_user_id="{external_user_id}", # any stable ID for this user in your system
configured_props={
"booking_experts": {"authProvisionId": "apn_xxxxxxx"},
"administrationId": "Administration ID",
"reservationId": "Reservation ID",
},
)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "booking_experts-add-guest-to-reservation",
"configured_props": {
"booking_experts": { "authProvisionId": "apn_xxxxxxx" },
"administrationId": "Administration ID",
"reservationId": "Reservation ID"
}
}'TOOLS
Booking Experts actions
On-demand operations your product or agent can configure and run on behalf of a connected user.
-
Add Guest to Reservation
actionAdd a guest to a reservation. See the documentationWritev1.0.1 -
Create Agenda Period
actionCreates a new agenda period. See the documentationWritev1.0.1 -
Delete Guest
actionDelete a guest for a reservation. See the documentationWritev0.0.8 -
Get Amenity
actionRetrieve a single amenity by ID. See the documentationRead-onlyv1.0.1 -
Get Booking
actionReturns a booking. See the documentationWritev1.0.1 -
Get Complex Prices
actionReturns all complex prices of a master price list. See the documentationWritev1.0.1 -
Get Guest
actionGet a guest by ID. See the documentationRead-onlyv0.0.3 -
Get Rentable Type
actionReturns a rentable type. See the documentationRead-onlyv0.0.1 -
Get Reservation
actionFetches a reservation by ID from Booking Experts. See the documentationRead-onlyv0.0.7 -
List Administration ID Options
actionRetrieves available options for the Administration ID field.Read-onlyv0.0.1 -
List Amenities
actionList amenities from BookingExperts. See the documentationRead-onlyv1.0.1 -
List Amenity Group ID Options
actionRetrieves available options for the Amenity Group ID field.Read-onlyv0.0.1 -
List Amenity ID Options
actionRetrieves available options for the Amenity ID field.Read-onlyv0.0.1 -
List Availabilities
actionList availabilities of a channel you have access to. See the documentationRead-onlyv1.0.2 -
List Bookings
actionReturns a list of bookings for an administration. See the documentationWritev1.0.1 -
List Channel ID Options
actionRetrieves available options for the Channel ID field.Read-onlyv0.0.1 -
List Guests
actionList all guests for a reservation. See the documentationRead-onlyv0.0.3 -
List Inventory Objects
actionReturns inventory objects of the administration. See the documentationWritev1.0.1 -
List Rentable Segment ID Options
actionRetrieves available options for the Rentable Segment ID field.Read-onlyv0.0.1 -
List Rentable Types
actionList all rentable types for a given administration. See the documentationRead-onlyv1.0.1 -
List RentableType Availabilities
actionList availabilities of a RentableType you have access to. See the documentationRead-onlyv1.0.2 -
List Reservations
actionLists all reservations for the current organization from Booking Experts. See the documentationRead-onlyv0.0.7 -
Search Contacts
actionSearch for contacts by email or phone. See the documentationRead-onlyv1.0.1 -
Update Guest
actionUpdate a guest for a reservation. See the documentationWritev1.0.1
EVENTS
Booking Experts triggers
Event sources your backend can deploy for users and receive through a webhook.
-
Booking Updated
triggerEmit new event for each booking updated. See the documentationv0.0.9 -
Inventory Object Updated
triggerEmit new event when an inventory object is updated. See the documentationv0.0.9 -
New Booking Created
triggerEmit new event for each new booking created. See the documentationv0.0.9 -
New Inventory Object Created
triggerEmit new event when a new inventory object is created. See the documentationv0.0.9
- App slug
- booking_experts
- Authentication
- API key
- Categories
- Travel
- Actions
- 24
- Triggers
- 4
- API proxy
- Available