Shopify: Order Created
Triggers when a new order is placed in your Shopify store. Useful for sending notifications, syncing to ERP, or triggering fulfillment workflows. Requires Shopify 'read_orders' scope.
Trigger Commerce
Triggers when a new order is placed in your Shopify store. Useful for sending notifications, syncing to ERP, or triggering fulfillment workflows. Requires Shopify 'read_orders' scope.
At a Glance
| Field | Value |
|---|---|
| Trigger ID | shopify-order-created |
| Category | Commerce |
| Tags | shopify, ecommerce, orders, webhook |
Trigger Configuration
| Field | Type | Required | Description |
|---|---|---|---|
shopDomain | string | Yes | Your Shopify store domain (e.g., my-store.myshopify.com) |
Trigger Result
| Field | Type | Required | Description |
|---|---|---|---|
triggeredAt | string | Yes | Timestamp when the order was created (UTC, RFC3339 format) |
topic | string | Yes | Shopify webhook topic |
shopDomain | string | Yes | Shopify store domain that sent the webhook |
order | object | Yes | Full Shopify order object with customer, line items, shipping, and payment details |
Workflow Root Example
json{ "nodes": { "root": { "type": "shopify-order-created", "payload": { "shopDomain": "my-store.myshopify.com" }, "children": [ "log_event" ] }, "log_event": { "type": "log", "payload": { "message": "Triggered at {{$trigger.triggeredAt}}" }, "children": [] } }}
Downstream nodes can use {{$trigger.triggeredAt}} and any result fields listed above. Event triggers usually expose the raw source payload under a field such as event, body, trade, or raw.
