Trigger Commerce

Triggers when inventory levels change in your Shopify store. Useful for low stock alerts, reorder automation, or syncing inventory across channels. Requires Shopify 'read_inventory' scope.

At a Glance

FieldValue
Trigger IDshopify-inventory-level-updated
CategoryCommerce
Tagsshopify, ecommerce, inventory, stock, webhook

Trigger Configuration

FieldTypeRequiredDescription
shopDomainstringYesYour Shopify store domain (e.g., my-store.myshopify.com)

Trigger Result

FieldTypeRequiredDescription
triggeredAtstringYesTimestamp when the inventory was updated (UTC, RFC3339 format)
topicstringYesShopify webhook topic
shopDomainstringYesShopify store domain that sent the webhook
inventoryLevelobjectYesShopify inventory level object with location_id, inventory_item_id, available quantity, and updated_at

Workflow Root Example

json
{ "nodes": { "root": { "type": "shopify-inventory-level-updated", "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.

Ask a question... ⌘I