# Xola — Pipedream Connect

> Booking and Marketing System

- API slug: `xola` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Travel
- Website: https://www.xola.com
- This page (HTML): https://pipedream.com/apps/xola
- Tools: 8 actions · 9 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: xola`

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Event Guide:
const result = await mcp.callTool({
  name: "xola-add-event-guide",
  arguments: {
    sellerId: "Seller ID",
    eventId: "Event ID",
  },
})
```

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

## API proxy

For a Xola 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: "xola-add-event-guide",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    xola: { authProvisionId: "apn_xxxxxxx" },
    sellerId: "Seller ID",
    eventId: "Event ID",
  },
})
```

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

## Actions (8)

### `xola-add-event-guide` — Add Event Guide (Write)

Adds a guide to an event. See the documentation

Full schema: https://pipedream.com/apps/xola/actions/add-event-guide.md

### `xola-create-experience-schedule` — Create Experience Schedule (Write)

Creates a new schedule for an experience. See the documentation

Full schema: https://pipedream.com/apps/xola/actions/create-experience-schedule.md

### `xola-delete-experience-schedule` — Delete Experience Schedule (Write)

Deletes a schedule from an experience. See the documentation

Full schema: https://pipedream.com/apps/xola/actions/delete-experience-schedule.md

### `xola-list-seller-id-options` — List Seller ID Options (Read-only)

Retrieves available options for the Seller ID field.

Full schema: https://pipedream.com/apps/xola/actions/list-seller-id-options.md

### `xola-list-user-id-options` — List User ID Options (Read-only)

Retrieves available options for the User ID field.

Full schema: https://pipedream.com/apps/xola/actions/list-user-id-options.md

### `xola-patch-event` — Patch Event (Write)

Partially update an event's properties. See the documentation

Full schema: https://pipedream.com/apps/xola/actions/patch-event.md

### `xola-remove-event-guide` — Remove Event Guide (Write)

Removes a guide from an event. See the documentation

Full schema: https://pipedream.com/apps/xola/actions/remove-event-guide.md

### `xola-update-experience-schedule` — Update Experience Schedule (Write)

Updates an existing schedule for an experience. See the documentation

Full schema: https://pipedream.com/apps/xola/actions/update-experience-schedule.md

## Triggers (9)

### `xola-experience-deleted-instant` — Experience Deleted (Instant) (Instant)

Emit new event when an experience is deleted. See the documentation

Full schema: https://pipedream.com/apps/xola/triggers/experience-deleted-instant.md

### `xola-experience-updated-instant` — Experience Updated (Instant) (Instant)

Emit new event when an experience is updated. See the documentation

Full schema: https://pipedream.com/apps/xola/triggers/experience-updated-instant.md

### `xola-new-experience-created-instant` — New Experience Created (Instant) (Instant)

Emit new event when a new experience is created. See the documentation

Full schema: https://pipedream.com/apps/xola/triggers/new-experience-created-instant.md

### `xola-new-order-created-instant` — New Order Created (Instant) (Instant)

Emit new event when a new order is created. See the documentation. This source has been deprecated. Please use the 'New Purchase Created (Instant)' source instead.

Full schema: https://pipedream.com/apps/xola/triggers/new-order-created-instant.md

### `xola-new-purchase-created-instant` — New Purchase Created (Instant) (Instant)

Emit new event when a new purchase is created. See the documentation

Full schema: https://pipedream.com/apps/xola/triggers/new-purchase-created-instant.md

### `xola-order-deleted-instant` — Order Deleted (Instant) (Instant)

Emit new event when an order is deleted. See the documentation

Full schema: https://pipedream.com/apps/xola/triggers/order-deleted-instant.md

### `xola-order-updated-instant` — Order Updated (Instant) (Instant)

Emit new event when an order is updated. See the documentation. This source has been deprecated. Please use the 'Purchase Updated (Instant)' source instead.

Full schema: https://pipedream.com/apps/xola/triggers/order-updated-instant.md

### `xola-purchase-updated-instant` — Purchase Updated (Instant) (Instant)

Emit new event when a purchase is updated. See the documentation

Full schema: https://pipedream.com/apps/xola/triggers/purchase-updated-instant.md

### `xola-user-updated-instant` — User Updated (Instant) (Instant)

Emit new event when a user is updated. See the documentation

Full schema: https://pipedream.com/apps/xola/triggers/user-updated-instant.md

---

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