# Lightspeed eCom (C-Series) — Pipedream Connect

> Online Stores

- API slug: `lightspeed_ecom_c_series` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Commerce
- Website: https://ecom-support.lightspeedhq.com/hc/en-us
- This page (HTML): https://pipedream.com/apps/lightspeed-ecom-c-series
- Tools: 18 actions · 10 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: lightspeed_ecom_c_series`

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

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

const { tools } = await mcp.listTools()

// e.g. run Find Customers:
const result = await mcp.callTool({
  name: "lightspeed_ecom_c_series-find-customers",
  arguments: {
    customerEmail: "Customer Email",
    sinceId: "Since ID",
  },
})
```

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

## API proxy

For a Lightspeed eCom (C-Series) 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: "lightspeed_ecom_c_series-find-customers",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    lightspeed_ecom_c_series: { authProvisionId: "apn_xxxxxxx" },
    customerEmail: "Customer Email",
    sinceId: "Since 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)

### `lightspeed_ecom_c_series-find-customers` — Find Customers (Write)

Find a customer by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/find-customers.md

### `lightspeed_ecom_c_series-find-invoice` — Find Invoice (Write)

Find an invoice by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/find-invoice.md

### `lightspeed_ecom_c_series-find-order` — Find Order (Write)

Find an order by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/find-order.md

### `lightspeed_ecom_c_series-find-product` — Find Product (Write)

Find an product by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/find-product.md

### `lightspeed_ecom_c_series-find-shipment` — Find Shipment (Write)

Find a shipment by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/find-shipment.md

### `lightspeed_ecom_c_series-get-order` — Get Order (Write)

Get an order by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/get-order.md

### `lightspeed_ecom_c_series-get-order-products` — Get Order Products (Write)

Get an order products by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/get-order-products.md

### `lightspeed_ecom_c_series-get-product` — Get Product (Write)

Get a product by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/get-product.md

### `lightspeed_ecom_c_series-get-shipment` — Get Shipment (Write)

Get a shipment by ID. See the documentation

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/get-shipment.md

### `lightspeed_ecom_c_series-list-brand-id-options` — List Brand ID Options (Read-only)

Retrieves available options for the Brand ID field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-brand-id-options.md

### `lightspeed_ecom_c_series-list-customer-email-options` — List Customer Email Options (Read-only)

Retrieves available options for the Customer Email field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-customer-email-options.md

### `lightspeed_ecom_c_series-list-customer-id-options` — List Customer ID Options (Read-only)

Retrieves available options for the Customer ID field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-customer-id-options.md

### `lightspeed_ecom_c_series-list-invoice-number-options` — List Invoice Number Options (Read-only)

Retrieves available options for the Invoice Number field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-invoice-number-options.md

### `lightspeed_ecom_c_series-list-order-id-options` — List Order ID Options (Read-only)

Retrieves available options for the Order ID field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-order-id-options.md

### `lightspeed_ecom_c_series-list-order-number-options` — List Order Number Options (Read-only)

Retrieves available options for the Order Number field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-order-number-options.md

### `lightspeed_ecom_c_series-list-product-id-options` — List Product ID Options (Read-only)

Retrieves available options for the Product ID field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-product-id-options.md

### `lightspeed_ecom_c_series-list-shipment-id-options` — List Shipment ID Options (Read-only)

Retrieves available options for the Shipment ID field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-shipment-id-options.md

### `lightspeed_ecom_c_series-list-shipment-number-options` — List Shipment Number Options (Read-only)

Retrieves available options for the Shipment Number field.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/actions/list-shipment-number-options.md

## Triggers (10)

### `lightspeed_ecom_c_series-customer-updated` — Customer Updated (Instant) (Instant)

Emit new event when a customer is updated.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/customer-updated.md

### `lightspeed_ecom_c_series-invoice-updated` — Invoice Updated (Instant) (Instant)

Emit new event when an invoice is updated.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/invoice-updated.md

### `lightspeed_ecom_c_series-new-customer-created` — New Customer Created (Instant) (Instant)

Emit new event when a customer is created.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/new-customer-created.md

### `lightspeed_ecom_c_series-new-invoice-created` — New Invoice Created (Instant) (Instant)

Emit new event when an invoice is created.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/new-invoice-created.md

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

Emit new event when an order is created.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/new-order-created.md

### `lightspeed_ecom_c_series-new-product-created` — New Product Created (Instant) (Instant)

Emit new event when a product is created.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/new-product-created.md

### `lightspeed_ecom_c_series-order-shipped` — Order Shipped (Instant) (Instant)

Emit new event when an order is shipped.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/order-shipped.md

### `lightspeed_ecom_c_series-order-updated` — Order Updated (Instant) (Instant)

Emit new event when a order is updated.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/order-updated.md

### `lightspeed_ecom_c_series-product-deleted` — Product Deleted (Instant) (Instant)

Emit new event when a product is deleted.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/product-deleted.md

### `lightspeed_ecom_c_series-product-updated` — Product Updated (Instant) (Instant)

Emit new event when a product is updated.

Full schema: https://pipedream.com/apps/lightspeed-ecom-c-series/triggers/product-updated.md

---

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