FlowRelay Docs Shopify Flow
All docs pages

START

USE CASES

SET UP

OPERATE

RECOVER

AGENT ACCESS

REFERENCE

Setup

Trigger variants and event mapping

Use this reference when an operator or authorized agent needs to choose the right Shopify Flow trigger variant and map sender payload fields without guessing.

Next step Continue with Add the Shopify Flow trigger.

Steps

Complete these in order.

  1. 01Choose the trigger variant based on what the Shopify Flow workflow needs to receive, not based on the sender system's name.
  2. 02Use Generic when the workflow only needs a custom external event and no Shopify resource reference.
  3. 03Use Order, Customer, or Product when Flow needs a native Shopify resource reference and the sender can provide that object's Shopify ID or GID.
  4. 04Use Inventory, Fulfillment, Return/refund, or Company/B2B when the workflow belongs in that operational lane and needs related-resource text context.
  5. 05Map only existing JSON fields from the sender payload. The current Shopify Flow edition does not transform, template, filter, or compute new values.
  6. 06Send a synthetic test event and confirm the receipt mapping result before enabling production traffic.

Decision rule #

Pick the narrowest variant that matches what Shopify Flow needs. If the workflow only needs a custom event, start with Generic. If it needs a native Shopify object, use the native resource variant. If it needs one of FlowRelay's operational lanes, use the related-resource variant.

Workflow needChooseRequired mapping
A custom external event starts the workflow.External eventNo resource identifier path.
Shopify Flow needs a native order, customer, or product reference.External order event, External customer event, or External product eventResource ID path.
The event belongs to inventory, fulfillment, return/refund, or company/B2B operations.The matching operational trigger variantRelated resource ID path.

Trigger variants #

These are the only Shopify Flow trigger variants in the current edition. Agents should use the API value when calling Agent Operations. Operators see the label in the embedded app and in Shopify Flow setup.

Operator labelAPI valueUse whenIdentifier fieldFlow context
External eventgenericThe workflow only needs a custom external event.NoneNo Shopify resource identifier is shown.
External order eventorderThe sender event is about a specific Shopify order.Resource ID pathNative order reference.
External customer eventcustomerThe sender event is about a specific Shopify customer.Resource ID pathNative customer reference.
External product eventproductThe sender event is about a specific Shopify product.Resource ID pathNative product reference.
External inventory eventinventoryThe workflow belongs in an inventory operations lane.Related resource ID pathRelated resource type and text identifier context.
External fulfillment eventfulfillmentThe workflow belongs in a fulfillment operations lane.Related resource ID pathRelated resource type and text identifier context.
External return/refund eventreturn_refundThe workflow belongs in a return or refund operations lane.Related resource ID pathRelated resource type and text identifier context.
External company/B2B eventcompany_b2bThe workflow belongs in a company or B2B operations lane.Related resource ID pathRelated resource type and text identifier context.

Mapping fields #

Event mapping tells FlowRelay how to read the sender payload before the Shopify Flow handoff. It does not rewrite the payload, fetch missing data, or transform values.

FieldRequired whenWhat it controlsExample
Default event type / defaultEventTypeAlwaysFallback event type when Event type path is blank or not present in the payload.warehouse.shipment.updated
Event type path / eventTypePathOptionalJSON path where FlowRelay can read the sender's event type from the payload.event.type
External event ID path / externalEventIdPathOptional, recommended when the sender has stable IDsJSON path for the sender's stable event ID, used for correlation and duplicate handling.event.id
Occurred-at path / occurredAtPathOptionalJSON path for the sender's original event timestamp.event.occurred_at
Summary path / summaryPathOptionalJSON path for a short human-readable summary that helps receipts and operators scan events.event.summary
Resource ID path / resourceIdPathOrder, Customer, or Product variantsJSON path for the Shopify ID or GID of the native order, customer, or product.order.id
Related resource ID path / relatedResourceIdPathInventory, Fulfillment, Return/refund, or Company/B2B variantsJSON path for the related resource identifier shown as text context in Flow.fulfillment.id
Required payload paths / requiredPayloadPathsOptional, up to five pathsValidation gates for fields the sender must always include before FlowRelay hands the event to Shopify Flow.items[0].sku

Path syntax #

Use simple dot notation with optional zero-based array indexes. Paths must point to fields that already exist in the incoming JSON payload.

SupportedExampleNot supported
Object propertyticket.idWildcards, filters, functions, transforms, or templating.
Array indexitems[0].skuNegative indexes, array searches, or computed paths.
Existing JSON valueorder.admin_graphql_api_idFetching values from Shopify or another system during mapping.

Synthetic examples #

Keep examples synthetic and redacted. Do not paste production event bodies, customer data, endpoint secrets, authentication headers, signatures, Shopify tokens, or copied merchant incidents into docs, prompts, tickets, or screenshots.

Generic endpoint mapping Use when Shopify Flow only needs a custom external event.
{
  "triggerVariant": "generic",
  "defaultEventType": "warehouse.shipment.updated",
  "eventTypePath": "event.type",
  "externalEventIdPath": "event.id",
  "occurredAtPath": "event.occurred_at",
  "summaryPath": "event.summary",
  "resourceIdPath": null,
  "relatedResourceIdPath": null,
  "requiredPayloadPaths": ["event.id", "event.type"]
}
Order endpoint mapping Use when Shopify Flow needs a native order reference.
{
  "triggerVariant": "order",
  "defaultEventType": "warehouse.order.ready",
  "eventTypePath": "event.type",
  "externalEventIdPath": "event.id",
  "occurredAtPath": "event.occurred_at",
  "summaryPath": "event.summary",
  "resourceIdPath": "order.id",
  "relatedResourceIdPath": null,
  "requiredPayloadPaths": ["order.id"]
}
Fulfillment endpoint mapping Use when Shopify Flow needs a fulfillment operations lane with related-resource context.
{
  "triggerVariant": "fulfillment",
  "defaultEventType": "carrier.fulfillment.exception",
  "eventTypePath": "event.type",
  "externalEventIdPath": "event.id",
  "occurredAtPath": "event.occurred_at",
  "summaryPath": "event.summary",
  "resourceIdPath": null,
  "relatedResourceIdPath": "fulfillment.id",
  "requiredPayloadPaths": ["fulfillment.id", "event.type"]
}

Agent usage #

Authorized agents should read this page before creating or editing endpoints through API, CLI, or MCP. The OpenAPI schema gives exact request shapes; this page gives the product meaning needed to choose the correct variant and identifier path.

SurfaceWhat the agent should do
Agent Operations APIUse the API value in triggerVariant, send null for inactive resource path fields, and preserve idempotency keys for create or edit work.
CLIUse flowrelay-agent create-endpoint --json endpoint.json after reading this page and the OpenAPI schema.
MCPUse search to inspect OpenAPI, read this page for mapping semantics, then execute only allowed Agent Operations routes inside the grant.
Any agent clientIf the correct variant is unclear, ask the operator instead of inventing a native or related-resource mapping.

Receipt check #

After a synthetic test, the receipt should show the selected trigger variant, resolved event type, any required identifier, required-path validation result, and Shopify Flow readiness. Fix mapping before production traffic if the receipt shows a missing path or unexpected identifier.

Handoff boundary

Delivered means FlowRelay handed the trigger to Shopify Flow. It does not mean downstream Shopify Flow branches, app calls, fulfillment changes, emails, or later systems completed.