# SureCart — Pipedream Connect

> Best WordPress E-Commerce Plugin

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Checkout:
const result = await mcp.callTool({
  name: "surecart-create-checkout",
  arguments: {
    email: "Email",
    name: "Name",
  },
})
```

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

## API proxy

For a SureCart 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.surecart.com/v1/account

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuc3VyZWNhcnQuY29tL3YxL2FjY291bnQ?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: "surecart-create-checkout",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    surecart: { authProvisionId: "apn_xxxxxxx" },
    email: "Email",
    name: "Name",
  },
})
```

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

## Actions (81)

### `surecart-create-checkout` — Create Checkout (Write)

Create a new checkout session. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-checkout.md

### `surecart-create-coupon` — Create Coupon (Write)

Create a new coupon. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-coupon.md

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

Create a new customer. See the documentation

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

### `surecart-create-fulfillment` — Create Fulfillment (Write)

Create a new fulfillment for an order. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-fulfillment.md

### `surecart-create-invoice` — Create Invoice (Write)

Create a new invoice. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-invoice.md

### `surecart-create-line-item` — Create Line Item (Write)

Add a line item to a checkout. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-line-item.md

### `surecart-create-media` — Create Media (Write)

Create a new media object from a direct upload. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-media.md

### `surecart-create-price` — Create Price (Write)

Create a new price for a product. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-price.md

### `surecart-create-product` — Create Product (Write)

Create a new product. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-product.md

### `surecart-create-promotion` — Create Promotion (Write)

Create a new promotion. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-promotion.md

### `surecart-create-refund` — Create Refund (Write)

Create a new refund for a charge. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-refund.md

### `surecart-create-return-request` — Create Return Request (Write)

Create a new return request for an order. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-return-request.md

### `surecart-create-subscription` — Create Subscription (Write)

Create a new subscription for a customer. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-subscription.md

### `surecart-create-variant` — Create Variant (Write)

Create a new variant. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/create-variant.md

### `surecart-delete-coupon` — Delete Coupon (Write)

Delete a coupon by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/delete-coupon.md

### `surecart-delete-customer` — Delete Customer (Write)

Delete a customer by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/delete-customer.md

### `surecart-delete-fulfillment` — Delete Fulfillment (Write)

Delete a fulfillment by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/delete-fulfillment.md

### `surecart-delete-product` — Delete Product (Write)

Delete a product by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/delete-product.md

### `surecart-delete-promotion` — Delete Promotion (Write)

Delete a promotion by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/delete-promotion.md

### `surecart-delete-return-request` — Delete Return Request (Write)

Delete a return request by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/delete-return-request.md

### `surecart-delete-variant` — Delete Variant (Write)

Delete a variant by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/delete-variant.md

### `surecart-expose-customer-media` — Expose Customer Media (Read-only)

Retrieve a temporary signed URL granting a customer access to a private media file. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/expose-customer-media.md

### `surecart-list-abandoned-checkouts` — List Abandoned Checkouts (Read-only)

Return a list of abandoned checkouts. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-abandoned-checkouts.md

### `surecart-list-cancellation-acts` — List Cancellation Acts (Read-only)

Return a list of cancellation acts. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-cancellation-acts.md

### `surecart-list-cancellation-reasons` — List Cancellation Reasons (Read-only)

Return a list of cancellation reasons. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-cancellation-reasons.md

### `surecart-list-charges` — List Charges (Read-only)

Return a list of charges. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-charges.md

### `surecart-list-checkouts` — List Checkouts (Read-only)

Return a list of checkouts. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-checkouts.md

### `surecart-list-coupons` — List Coupons (Read-only)

Return a list of coupons. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-coupons.md

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

Return a list of customers. See the documentation

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

### `surecart-list-fulfillments` — List Fulfillments (Read-only)

Return a list of fulfillments. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-fulfillments.md

### `surecart-list-invoices` — List Invoices (Read-only)

Return a list of invoices. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-invoices.md

### `surecart-list-line-items` — List Line Items (Read-only)

Retrieves a paginated list of line items from SureCart. Use to inspect items added to checkouts, audit configurations, or filter by checkout or line item IDs; to find valid checkout IDs, use List Checkouts; returns up to 100 items per page and supports pagination parameters. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-line-items.md

### `surecart-list-media` — List Media (Read-only)

Return a list of media items. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-media.md

### `surecart-list-orders` — List Orders (Read-only)

Return a list of orders. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-orders.md

### `surecart-list-periods` — List Periods (Read-only)

Return a list of subscription billing periods. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-periods.md

### `surecart-list-prices` — List Prices (Read-only)

Return a list of prices. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-prices.md

### `surecart-list-products` — List Products (Read-only)

Return a list of products. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-products.md

### `surecart-list-promotions` — List Promotions (Read-only)

Return a list of promotions. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-promotions.md

### `surecart-list-purchases` — List Purchases (Read-only)

Return a list of purchases. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-purchases.md

### `surecart-list-refund-items` — List Refund Items (Read-only)

Return a list of refund items. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-refund-items.md

### `surecart-list-refunds` — List Refunds (Read-only)

Return a list of refunds. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-refunds.md

### `surecart-list-return-requests` — List Return Requests (Read-only)

Return a list of return requests. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-return-requests.md

### `surecart-list-shipments` — List Shipments (Read-only)

Return a list of shipments. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-shipments.md

### `surecart-list-subscriptions` — List Subscriptions (Read-only)

Return a list of subscriptions. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-subscriptions.md

### `surecart-list-trackings` — List Trackings (Read-only)

Return a list of tracking records. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-trackings.md

### `surecart-list-variants` — List Variants (Read-only)

Return a list of variants. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/list-variants.md

### `surecart-retrieve-abandoned-checkout` — Retrieve Abandoned Checkout (Read-only)

Retrieve an abandoned checkout by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-abandoned-checkout.md

### `surecart-retrieve-cancellation-act` — Retrieve Cancellation Act (Read-only)

Retrieve a cancellation act by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-cancellation-act.md

### `surecart-retrieve-cancellation-reason` — Retrieve Cancellation Reason (Read-only)

Retrieve a cancellation reason by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-cancellation-reason.md

### `surecart-retrieve-charge` — Retrieve Charge (Read-only)

Retrieve a single SureCart charge by its ID. Run List Charges first to obtain a valid charge ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-charge.md

### `surecart-retrieve-checkout` — Retrieve Checkout (Read-only)

Retrieve a checkout by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-checkout.md

### `surecart-retrieve-coupon` — Retrieve Coupon (Read-only)

Retrieve a single coupon by its ID. Run List Coupons first to obtain a valid coupon ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-coupon.md

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

Retrieve a customer by ID. See the documentation

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

### `surecart-retrieve-fulfillment` — Retrieve Fulfillment (Read-only)

Retrieve a fulfillment by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-fulfillment.md

### `surecart-retrieve-invoice` — Retrieve Invoice (Read-only)

Retrieve an invoice by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-invoice.md

### `surecart-retrieve-line-item` — Retrieve Line Item (Read-only)

Retrieve a line item by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-line-item.md

### `surecart-retrieve-order` — Retrieve Order (Read-only)

Retrieve an order by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-order.md

### `surecart-retrieve-price` — Retrieve Price (Read-only)

Retrieve a single SureCart price by its ID. Run List Prices first to obtain a valid price ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-price.md

### `surecart-retrieve-product` — Retrieve Product (Read-only)

Retrieve a product by ID or slug. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-product.md

### `surecart-retrieve-promotion` — Retrieve Promotion (Read-only)

Retrieve a single promotion by its ID. Run List Promotions first to obtain a valid promotion ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-promotion.md

### `surecart-retrieve-purchase` — Retrieve Purchase (Read-only)

Retrieve a purchase by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-purchase.md

### `surecart-retrieve-refund` — Retrieve Refund (Read-only)

Retrieve a refund by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-refund.md

### `surecart-retrieve-refund-item` — Retrieve Refund Item (Read-only)

Retrieve a refund item by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-refund-item.md

### `surecart-retrieve-return-request` — Retrieve Return Request (Read-only)

Retrieve a return request by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-return-request.md

### `surecart-retrieve-shipment` — Retrieve Shipment (Read-only)

Retrieve a shipment by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-shipment.md

### `surecart-retrieve-subscription` — Retrieve Subscription (Read-only)

Retrieve a subscription by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-subscription.md

### `surecart-retrieve-subscription-protocol` — Retrieve Subscription Protocol (Read-only)

Retrieve the account-level subscription protocol settings, including cancellation behavior and retry windows. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-subscription-protocol.md

### `surecart-retrieve-tracking` — Retrieve Tracking (Read-only)

Retrieve a tracking record by ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-tracking.md

### `surecart-retrieve-variant` — Retrieve Variant (Read-only)

Retrieve a single variant by its ID. Run List Variants first to obtain a valid variant ID. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/retrieve-variant.md

### `surecart-update-checkout` — Update Checkout (Write)

Update an existing checkout session. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-checkout.md

### `surecart-update-coupon` — Update Coupon (Write)

Update an existing coupon. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-coupon.md

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

Update an existing customer. See the documentation

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

### `surecart-update-fulfillment` — Update Fulfillment (Write)

Update an existing fulfillment. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-fulfillment.md

### `surecart-update-line-item` — Update Line Item (Write)

Update an existing line item. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-line-item.md

### `surecart-update-product` — Update Product (Write)

Update an existing product. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-product.md

### `surecart-update-promotion` — Update Promotion (Write)

Update an existing promotion. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-promotion.md

### `surecart-update-purchase` — Update Purchase (Write)

Update an existing purchase, such as scheduling a revocation. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-purchase.md

### `surecart-update-return-request` — Update Return Request (Write)

Update an existing return request. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-return-request.md

### `surecart-update-shipment` — Update Shipment (Write)

Update an existing shipment. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-shipment.md

### `surecart-update-subscription` — Update Subscription (Write)

Update an existing subscription. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-subscription.md

### `surecart-update-variant` — Update Variant (Write)

Update an existing variant. See the documentation

Full schema: https://pipedream.com/apps/surecart/actions/update-variant.md

## Triggers (53)

### `surecart-checkout-abandoned` — Checkout Abandoned (Instant) (Instant)

Emit new event when a customer abandons their checkout. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/checkout-abandoned.md

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

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

Full schema: https://pipedream.com/apps/surecart/triggers/customer-updated.md

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

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

Full schema: https://pipedream.com/apps/surecart/triggers/invoice-updated.md

### `surecart-abandoned-checkout-recovered` — New Abandoned Checkout Recovered (Instant) (Instant)

Emit new event when an abandoned checkout is recovered. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/abandoned-checkout-recovered.md

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

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

Full schema: https://pipedream.com/apps/surecart/triggers/customer-created.md

### `surecart-fulfillment-created` — New Fulfillment Created (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/fulfillment-created.md

### `surecart-fulfillment-deleted` — New Fulfillment Deleted (Instant) (Instant)

Emit new event when a fulfillment is deleted. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/fulfillment-deleted.md

### `surecart-fulfillment-updated` — New Fulfillment Updated (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/fulfillment-updated.md

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

Emit new event when an invoice is created. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/invoice-created.md

### `surecart-invoice-deleted` — New Invoice Deleted (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/invoice-deleted.md

### `surecart-invoice-made-draft` — New Invoice Made Draft (Instant) (Instant)

Emit new event when an invoice is made a draft. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/invoice-made-draft.md

### `surecart-invoice-opened` — New Invoice Opened (Instant) (Instant)

Emit new event when an invoice is opened. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/invoice-opened.md

### `surecart-invoice-paid` — New Invoice Paid (Instant) (Instant)

Emit new event when an invoice is paid. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/invoice-paid.md

### `surecart-order-fulfilled` — New Order Fulfilled (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/order-fulfilled.md

### `surecart-order-partially-fulfilled` — New Order Partially Fulfilled (Instant) (Instant)

Emit new event when an order is partially fulfilled. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/order-partially-fulfilled.md

### `surecart-order-partially-shipped` — New Order Partially Shipped (Instant) (Instant)

Emit new event when an order is partially shipped. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/order-partially-shipped.md

### `surecart-order-payment-failed` — New Order Payment Failed (Instant) (Instant)

Emit new event when an order payment fails. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/order-payment-failed.md

### `surecart-order-unfulfilled` — New Order Unfulfilled (Instant) (Instant)

Emit new event when an order is marked unfulfilled. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/order-unfulfilled.md

### `surecart-order-unshipped` — New Order Unshipped (Instant) (Instant)

Emit new event when an order is marked unshipped. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/order-unshipped.md

### `surecart-order-voided` — New Order Voided (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/order-voided.md

### `surecart-price-created` — New Price Created (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/price-created.md

### `surecart-price-deleted` — New Price Deleted (Instant) (Instant)

Emit new event when a price is deleted. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/price-deleted.md

### `surecart-price-updated` — New Price Updated (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/price-updated.md

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

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

Full schema: https://pipedream.com/apps/surecart/triggers/product-created.md

### `surecart-purchase-created` — New Purchase Created (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/purchase-created.md

### `surecart-refund-created` — New Refund Created (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/refund-created.md

### `surecart-return-request-created` — New Return Request Created (Instant) (Instant)

Emit new event when a return request is created. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/return-request-created.md

### `surecart-subscription-made-trialing` — New Subscription Made Trialing (Instant) (Instant)

Emit new event when a subscription enters trial status. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-made-trialing.md

### `surecart-order-created` — Order Created (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/order-created.md

### `surecart-order-delivered` — Order Delivered (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/order-delivered.md

### `surecart-order-made-processing` — Order Made Processing (Instant) (Instant)

Emit new event when an order is moved to processing status. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/order-made-processing.md

### `surecart-order-paid` — Order Paid (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/order-paid.md

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

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

Full schema: https://pipedream.com/apps/surecart/triggers/order-shipped.md

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

Emit new event when a product is deleted. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/product-deleted.md

### `surecart-product-stock-adjusted` — Product Stock Adjusted (Instant) (Instant)

Emit new event when a product's stock is adjusted. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/product-stock-adjusted.md

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

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

Full schema: https://pipedream.com/apps/surecart/triggers/product-updated.md

### `surecart-purchase-invoked` — Purchase Invoked (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/purchase-invoked.md

### `surecart-purchase-revoked` — Purchase Revoked (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/purchase-revoked.md

### `surecart-purchase-updated` — Purchase Updated (Instant) (Instant)

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

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

### `surecart-refund-succeeded` — Refund Succeeded (Instant) (Instant)

Emit new event when a refund succeeds. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/refund-succeeded.md

### `surecart-return-request-completed` — Return Request Completed (Instant) (Instant)

Emit new event when a return request is completed. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/return-request-completed.md

### `surecart-return-request-deleted` — Return Request Deleted (Instant) (Instant)

Emit new event when a return request is deleted. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/return-request-deleted.md

### `surecart-return-request-opened` — Return Request Opened (Instant) (Instant)

Emit new event when a return request is opened. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/return-request-opened.md

### `surecart-return-request-updated` — Return Request Updated (Instant) (Instant)

Emit new event when a return request is updated. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/return-request-updated.md

### `surecart-subscription-canceled` — Subscription Canceled (Instant) (Instant)

Emit new event when a subscription is canceled. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-canceled.md

### `surecart-subscription-completed` — Subscription Completed (Instant) (Instant)

Emit new event when a subscription is completed. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-completed.md

### `surecart-subscription-created` — Subscription Created (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-created.md

### `surecart-subscription-made-active` — Subscription Made Active (Instant) (Instant)

Emit new event when a subscription is made active. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-made-active.md

### `surecart-subscription-renewal-reminder-sent` — Subscription Renewal Reminder Sent (Instant) (Instant)

Emit new event when a subscription renewal reminder is sent. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-renewal-reminder-sent.md

### `surecart-subscription-renewed` — Subscription Renewed (Instant) (Instant)

Emit new event when a subscription is renewed. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-renewed.md

### `surecart-subscription-set-to-cancel` — Subscription Set to Cancel (Instant) (Instant)

Emit new event when a subscription is set to cancel. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-set-to-cancel.md

### `surecart-subscription-updated` — Subscription Updated (Instant) (Instant)

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

Full schema: https://pipedream.com/apps/surecart/triggers/subscription-updated.md

### `surecart-variant-stock-adjusted` — Variant Stock Adjusted (Instant) (Instant)

Emit new event when a product variant's stock is adjusted. See the documentation

Full schema: https://pipedream.com/apps/surecart/triggers/variant-stock-adjusted.md

---

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