Shopify Event and Property Mappings

Event and property mapping details while ingesting data from Shopify.

This page contains all the client-side pixel mappings and the webhook topic mappings.

Event mappings

This section covers the event mappings from Shopify to RudderStack:

Pixel events (client-side)

Shopify eventRudderStack event
cart_viewedCart Viewed
checkout_address_info_submittedCheckout Address Info Submitted
checkout_contact_info_submittedCheckout Contact Info Submitted
checkout_shipping_info_submittedCheckout Shipping Info Submitted
payment_info_submittedPayment Info Submitted
checkout_startedCheckout Started
collection_viewedProduct List Viewed
page_viewedpage()
product_added_to_cartProduct Added
product_removed_from_cartProduct Removed
product_viewedProduct Viewed
search_submittedProducts Searched
checkout_completedOrder Completed

Webhook events (server-side)

Shopify eventRudderStack event
CHECKOUTS_CREATECheckout Started
CHECKOUTS_UPDATECheckout Updated
CHECKOUTS_DELETECheckouts Delete
Custom track event
FULFILLMENTS_CREATEFulfillments Create
Custom track event
FULFILLMENTS_UPDATEFulfillments Update
Custom track event
FULFILLMENT_ORDERS_SPLITFulfillment Orders Split
Custom track event
ORDERS_CREATEOrder Created
ORDERS_UPDATEDOrder Updated
ORDERS_DELETEOrders Delete
Custom track event
ORDERS_EDITEDOrders Edited
Custom track event
ORDERS_CANCELLEDOrder Cancelled
ORDERS_FULFILLEDOrders Fulfilled
ORDERS_PAIDOrders Paid
ORDERS_PARTIALLY_FULLFILLEDOrders Partially Fulfilled
SHIPPING_ADDRESSES_CREATEShipping Addresses Create
Custom track event
SHIPPING_ADDRESSES_UPDATEShipping Addresses Update
Custom track event
info

RudderStack automatically subscribes to the above-mentioned Shopify webhook topics.

You can send additional Shopify webhook events to downstream tools by using RudderStack’s Webhook source to subscribe to the specific Shopify webhook topics.

How identify calls are triggered

In addition to the above events, RudderStack also triggers an identify call for each Ecommerce Event to capture the user information from the event payload.

For example, for a ORDERS_UPDATED Shopify event, RudderStack triggers an Order Updated event along with an identify event containing the user information.

Property mappings

This section covers the property mappings from Shopify events to the RudderStack events:

Pixel events (client-side)

This section covers the property mappings for the client-side pixel events.

Checkout event mappings

RudderStack propertyShopify property
order_idinputEvent.data.checkout.order.id
checkout_id
value
inputEvent.data.checkout.token
totalinputEvent.data.checkout.totalPrice.amount
currencyinputEvent.data.checkout.currencyCode
discountinputEvent.data.checkout.discountsAmount.amount
shippinginputEvent.data.checkout.shippingLine.price.amount
revenueinputEvent.data.checkout.subtotalPrice.amount
taxinputEvent.data.checkout.totalTax.amount
Product-level mappings
RudderStack propertyShopify property
quantityproduct.quantity
titleproduct.name
image_urlvariant.image.src
pricevariant.price.amount
skuvariant.sku
product_idvariant.product.id
variantvariant.product.title
categoryvariant.product.type
urlvariant.product.url
brandvariant.product.vendor

Product Viewed event mappings

RudderStack propertyShopify property
product_idproductVariant.product.id
variantproductVariant.product.title
brandproductVariant.product.vendor
categoryproductVariant.product.type
image_urlproductVariant.product.image.src
priceproductVariant.price.amount
currencyproductVariant.price.currencyCode
urlproductVariant.product.url
skuproductVariant.product.sku
nameproductVariant.product.title
quantitycartLine.quantity

Product List Viewed event mappings

RudderStack propertyShopify property
image_urlimage.src
priceprice.amount
product_idproduct.id
variantproduct.title
categoryproduct.type
urlproduct.url
brandproduct.vendor
skusku
nametitle

Cart Viewed event mappings

RudderStack propertyShopify property
product_idmerchandise.product.id
variantmerchandise.product.title
image_urlmerchandise.image.src
pricemerchandise.price.amount
categorymerchandise.product.type
urlmerchandise.product.url
brandmerchandise.product.vendor
skumerchandise.sku
namemerchandise.title
quantityquantity

Webhook events (server-side)

This section covers the property mappings for the server-side webhook events.

Identify traits mapping

RudderStack automatically maps the identify traits from the Standard Event Spec to the corresponding Shopify fields.

For example, userId is mapped to Shopify’s id field, traits.email is mapped to email, traits.phone is mapped to phone, and so on.

Common mappings for the products array

RudderStack propertyShopify propertyNotes
product_idproduct_idAutomatically typecasted to String to conform with the RudderStack Ecommerce Spec.
skusku-
titlename-
pricepriceAutomatically typecasted to Number to conform with the RudderStack Ecommerce Spec.
brandvendor-
quantityquantity-

Common mappings for each product within the products array

RudderStack propertyShopify propertyNotes
order_ididAutomatically typecasted to String to conform with the RudderStack Ecommerce Spec.
valuetotal_priceAutomatically typecasted to Number to conform with the RudderStack Ecommerce Spec.
taxtotal_taxAutomatically typecasted to Number to conform with the RudderStack Ecommerce Spec.
currencycurrency-

Warehouse destinations

While sending events from Shopify to warehouse destinations, RudderStack creates the columns based on the above property mappings along with a shopifyDetails column containing the entire untransformed event payload received received from Shopify.

info

Shopify sends a lot more properties apart from the ones that RudderStack maps according to the property mappings. Hence, RudderStack sends the shopifyDetails to make sure that:

  • No data is lost.
  • The warehouse is not bloated by creating a large number of columns corresponding to the additional properties.

RudderStack sends the shopifyDetails object as a JSON path within the event’s integrations object, as shown:

integrations: {
  SHOPIFY: true,
  DATA_WAREHOUSE: {
    options: {
      jsonPaths: [`${event.type}.context.shopifyDetails`],
    },
  },
},

Note that event.type varies according to the type of event triggered, for example, identify, track, or page.


Questions? Contact us by email or on Slack