Calculated Values
Contents
Overview
Calculated Values execute an arbitrary expression to generate a custom value for inclusion in CSV exports, CRM integrations and search filters and results.
Expressions are written in Common Expression Language. CEL expressions can be tricky to write so don't hesitate to ask for help.
Note: Calculated Values are only available on the Enterprise plan.
Creating a Calculated Value
To create a Calculated Value, go to the Calculated Value page and click the Add New Calculated Value button. You'll need to provide the follow fields to define the Calculated Value and then click the Save button:
- Name: The name of the calculated value.
- Search Filter: Enable the checkbox to use the Calculated Value as a filter within Store Leads search.
- Expression: The expression that is evaluated against every domain. See some example expressions below.

Since expressions can be tricky to write, it helps to test the expression against a sample domain. To do so, simply click the Test Expression button.
Calculated Values in Search Results
To include Calculated Values in search results, click on the Calculated Values tab in the search result column picker. Then open the Calculated Values section and select the columns to include in search results.

Calculated Values as Search Filters
If the Search Filter option is enabled, the Calculated Value can be used as a filter for search results. Search filters are calculated nightly so you may have to wait up to 24 hours for the filter to become available. Depending on the expression, the filter may be available in Basic Search, Advanced Search or both.

Note: Using calculated values as a search filter is only available on the Enterprise plan.
Calculated Values in CSV Exports
To include Calculated Values in CSV exports, click on the Calculated Values tab in the Export dialog. Click the Add New Column button to add a one-time expression to the CSV export. Otherwise, you can address an expression in a saved Calculated Value.

Calculated Values in CRM Integrations
Calculated Values can also be used to write custom values to CRM Integrations. For more details, refer to our documentation for your CRM:
Example Expressions
Count the number of installed technologies:
has(_domain.technologies) ? _domain.technologies.size() : 0
Count the number of installed apps:
has(_domain.apps) ? _domain.apps.size() : 0
Count the number of technologies installed in the last 14 days:
has(_domain.technology_details) ? _domain.technology_details.filter(k, now - _domain.technology_details[k].installed_at < duration("336h") ).size() : 0
Count the number of apps installed in the last 14 days:
has(_domain.app_details) ? _domain.app_details.filter(k, now - _domain.app_details[k].installed_at < duration("336h") ).size() : 0
Determine whether a specific technology is installed:
has(_domain.technologies) ? _domain.technologies.contains('Affirm') : false
Filter list of technologies to only include specific technologies of interest (output as a comma-separated string):
has(_domain.technologies) ? _domain.technologies.filter(s, s in ['Collabstr', 'CreatorIQ'] ).join(',') : ''
Generate a list of unique apps and technologies installed on the domain.
Update: can now use the new app_and_tech_details attribute (see below).
( (has(_domain.technologies) ? _domain.technologies : []) + (has(_domain.app_details) ? _domain.app_details.map(k, has(_domain.app_details[k].technology) ? _domain.app_details[k].technology : _domain.app_details[k].name ) : []) ).unique().sort().join(',')
Generate a list of unique apps and technologies installed on the domain along with their install date.
(has(_domain.app_and_tech_details) ? _domain.app_and_tech_details.map(k, has(_domain.app_and_tech_details[k].installed_at) ? _domain.app_and_tech_details[k].name + "," + _domain.app_and_tech_details[k].installed_at.format("2006/01/02") : _domain.app_and_tech_details[k].name + ",unknown" ) : [] ).join(',')
Retrieving the name of the most-recently installed app or technology.
has(_domain.app_and_tech_details) && _domain.app_and_tech_details.size() > 0 ? _domain.app_and_tech_details.sort_by_installed_at("desc")[0].name : ''
Listing the titles of the 3 most recently published products.
_domain.product_search({"page_size": 3, "s": "published_at_unix"}).products.map(p, p.title)
Listing the titles of up to 3 products matching a search for "shoes" order by most recently published products.
_domain.product_search({"q": "shoes", "page_size": 3, "s": "published_at_unix"}).products.map(p, p.title)
Show the list (and count) of vendor attributes across all products sold at the store.
_domain.product_search({"fl": "vendor"}).aggregations.vendor.buckets
Available Attributes
The following attributes are available for use within expressions. Please get in touch if you need access to additional attributes within expressions.
{ "_domain": { "about_us_page_url": "", "administrative_area_level_1": "California", "aliases": [ "www.sanriogifts.net" ], "alternates": null, "app_and_tech_details": { "Amai ProMap ‑ Store Locator": { "all_names": [ "Amai ProMap ‑ Store Locator", "ProMap ‑ Store Locator" ], "categories": [ "store locator", "internationalization - other" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Amai ProMap ‑ Store Locator", "platform": "shopify", "platform_install_rank": 456, "uninstalled_at": "2023-03-11T04:17:45Z", "uninstalled_at_sfdc": "2023-03-11T04:17:45+00:00" }, "Apple Pay": { "all_names": [ "Apple Pay" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Apple Pay" }, "Arrive": { "all_names": [ "Arrive" ], "installed_at": "2024-02-16T02:21:08Z", "installed_at_sfdc": "2024-02-16T02:21:08+00:00", "name": "Arrive" }, "Banner Slider ‑ Image Slider": { "all_names": [ "Banner Slider ‑ Image Slider" ], "categories": [ "store design" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Banner Slider ‑ Image Slider", "platform": "shopify", "platform_install_rank": 2346, "uninstalled_at": "2021-06-22T01:26:36Z", "uninstalled_at_sfdc": "2021-06-22T01:26:36+00:00" }, "BeSure Checkout Rules": { "all_names": [ "BeSure Checkout Rules" ], "categories": [ "cart customization", "checkout - other" ], "installed_at": "2023-10-13T16:34:56Z", "installed_at_sfdc": "2023-10-13T16:34:56+00:00", "name": "BeSure Checkout Rules", "platform": "shopify", "platform_install_rank": 791, "uninstalled_at": "2024-02-23T08:04:18Z", "uninstalled_at_sfdc": "2024-02-23T08:04:18+00:00" }, "Because: CRO + Personalization": { "all_names": [ "Because: CRO + Personalization" ], "categories": [ "upsell and cross-sell", "site optimization - other" ], "installed_at": "2023-06-28T13:48:54Z", "installed_at_sfdc": "2023-06-28T13:48:54+00:00", "name": "Because: CRO + Personalization", "platform": "shopify", "platform_install_rank": 1334 }, "Boost AI Search \u0026 Filter": { "all_names": [ "Boost AI Search \u0026 Filter" ], "categories": [ "search and filters", "navigation and menus" ], "installed_at": "2022-03-29T17:07:04Z", "installed_at_sfdc": "2022-03-29T17:07:04+00:00", "name": "Boost AI Search \u0026 Filter", "platform": "shopify", "platform_install_rank": 79 }, "Cloudflare": { "all_names": [ "Cloudflare" ], "installed_at": "2023-10-31T23:57:24Z", "installed_at_sfdc": "2023-10-31T23:57:24+00:00", "name": "Cloudflare" }, "Cloudflare CDN": { "all_names": [ "Cloudflare CDN" ], "installed_at": "2021-06-08T15:55:00Z", "installed_at_sfdc": "2021-06-08T15:55:00+00:00", "name": "Cloudflare CDN" }, "Cozy Image Gallery": { "all_names": [ "Cozy Image Gallery" ], "categories": [ "image gallery", "images and media - other" ], "installed_at": "2021-01-07T23:22:06Z", "installed_at_sfdc": "2021-01-07T23:22:06+00:00", "name": "Cozy Image Gallery", "platform": "shopify", "platform_install_rank": 533 }, "Cozy YouTube Videos Gallery": { "all_names": [ "Cozy YouTube Videos Gallery" ], "categories": [ "video and livestream", "images and media - other" ], "installed_at": "2022-01-05T16:57:37Z", "installed_at_sfdc": "2022-01-05T16:57:37+00:00", "name": "Cozy YouTube Videos Gallery", "platform": "shopify", "platform_install_rank": 1154 }, "EG Auto Add to Cart Free Gift": { "all_names": [ "EG Auto Add to Cart Free Gift" ], "categories": [ "cart customization", "discounts" ], "installed_at": "2023-01-11T13:49:00Z", "installed_at_sfdc": "2023-01-11T13:49:00+00:00", "name": "EG Auto Add to Cart Free Gift", "platform": "shopify", "platform_install_rank": 204 }, "Extendons Hide Price": { "all_names": [ "Extendons Hide Price", "Extendons Hide Price App" ], "categories": [ "pricing quotes", "pricing - other" ], "installed_at": "2021-02-19T00:57:50Z", "installed_at_sfdc": "2021-02-19T00:57:50+00:00", "name": "Extendons Hide Price", "platform": "shopify", "platform_install_rank": 1507, "uninstalled_at": "2021-04-03T13:41:25Z", "uninstalled_at_sfdc": "2021-04-03T13:41:25+00:00" }, "Facebook Pixel": { "all_names": [ "Facebook Pixel" ], "installed_at": "2020-11-25T11:52:34Z", "installed_at_sfdc": "2020-11-25T11:52:34+00:00", "name": "Facebook Pixel" }, "Gift Box • Gift with Purchase": { "all_names": [ "Gift Box • Gift with Purchase", "Gift Box | Free Gift Purchase", "Gift Box | Free Gift Selection", "GB: Free Gift with Purchase", "Gift Box – Free Gift Motivator" ], "categories": [ "gifts - other", "giveaways and contests" ], "installed_at": "2021-12-11T14:54:58Z", "installed_at_sfdc": "2021-12-11T14:54:58+00:00", "name": "Gift Box • Gift with Purchase", "platform": "shopify", "platform_install_rank": 604, "uninstalled_at": "2022-10-10T20:52:55Z", "uninstalled_at_sfdc": "2022-10-10T20:52:55+00:00" }, "Google Ads Pixel": { "all_names": [ "Google Ads Pixel" ], "installed_at": "2021-01-23T10:11:15Z", "installed_at_sfdc": "2021-01-23T10:11:15+00:00", "name": "Google Ads Pixel", "uninstalled_at": "2023-05-17T13:51:54Z", "uninstalled_at_sfdc": "2023-05-17T13:51:54+00:00" }, "Google Adsense": { "all_names": [ "Google Adsense" ], "installed_at": "2023-03-04T10:28:34Z", "installed_at_sfdc": "2023-03-04T10:28:34+00:00", "name": "Google Adsense" }, "Google Analytics": { "all_names": [ "Google Analytics" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Google Analytics", "uninstalled_at": "2025-02-25T21:15:24Z", "uninstalled_at_sfdc": "2025-02-25T21:15:24+00:00" }, "Google Analytics Enhanced Ecommerce": { "all_names": [ "Google Analytics Enhanced Ecommerce" ], "installed_at": "2022-06-02T07:21:11Z", "installed_at_sfdc": "2022-06-02T07:21:11+00:00", "name": "Google Analytics Enhanced Ecommerce", "uninstalled_at": "2025-02-25T21:15:24Z", "uninstalled_at_sfdc": "2025-02-25T21:15:24+00:00" }, "Google Pay": { "all_names": [ "Google Pay" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Google Pay" }, "Google Tag Manager": { "all_names": [ "Google Tag Manager" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Google Tag Manager" }, "Instant Search Plus": { "all_names": [ "Instant Search Plus" ], "categories": [ "search and filters", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Instant Search Plus", "shopify_app": { "all_names": [ "Fast Simon AI Search \u0026 Filters", "Fast Simon Search and Filters", "Instant Search Plus" ], "categories": [ "search and filters", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Fast Simon AI Search \u0026 Filters", "platform": "shopify", "platform_install_rank": 641, "technology": "Instant Search Plus" } }, "KOR Order Limits Quantity": { "all_names": [ "KOR Order Limits Quantity", "KOR Order Limit Quantity" ], "categories": [ "order limits", "inventory optimization" ], "installed_at": "2021-10-28T18:27:49Z", "installed_at_sfdc": "2021-10-28T18:27:49+00:00", "name": "KOR Order Limits Quantity", "platform": "shopify", "platform_install_rank": 793, "uninstalled_at": "2021-11-04T05:22:47Z", "uninstalled_at_sfdc": "2021-11-04T05:22:47+00:00" }, "Klaviyo": { "all_names": [ "Klaviyo" ], "categories": [ "email marketing", "sms marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Klaviyo", "shopify_app": { "all_names": [ "Klaviyo: Email Marketing \u0026 SMS", "Klaviyo" ], "categories": [ "email marketing", "sms marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Klaviyo: Email Marketing \u0026 SMS", "platform": "shopify", "platform_install_rank": 3, "technology": "Klaviyo" } }, "Lucky Orange Heatmaps \u0026 Replay": { "all_names": [ "Lucky Orange Heatmaps \u0026 Replay" ], "categories": [ "analytics", "site optimization - other" ], "installed_at": "2024-02-08T04:23:35Z", "installed_at_sfdc": "2024-02-08T04:23:35+00:00", "name": "Lucky Orange Heatmaps \u0026 Replay", "platform": "shopify", "platform_install_rank": 43, "uninstalled_at": "2024-03-05T14:31:26Z", "uninstalled_at_sfdc": "2024-03-05T14:31:26+00:00" }, "Minmaxify Order Limits": { "all_names": [ "Minmaxify Order Limits", "Order Limits ‑ MinMaxify" ], "categories": [ "order limits" ], "installed_at": "2021-10-28T18:27:49Z", "installed_at_sfdc": "2021-10-28T18:27:49+00:00", "name": "Minmaxify Order Limits", "platform": "shopify", "platform_install_rank": 130 }, "Noibu": { "all_names": [ "Noibu" ], "installed_at": "2023-03-04T10:28:34Z", "installed_at_sfdc": "2023-03-04T10:28:34+00:00", "name": "Noibu", "uninstalled_at": "2023-05-03T05:38:47Z", "uninstalled_at_sfdc": "2023-05-03T05:38:47+00:00" }, "PayPal": { "all_names": [ "PayPal" ], "installed_at": "2023-10-31T23:57:24Z", "installed_at_sfdc": "2023-10-31T23:57:24+00:00", "name": "PayPal", "uninstalled_at": "2024-10-04T04:26:05Z", "uninstalled_at_sfdc": "2024-10-04T04:26:05+00:00" }, "PayPal Express Checkout": { "all_names": [ "PayPal Express Checkout" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "PayPal Express Checkout" }, "Pinterest Pixel": { "all_names": [ "Pinterest Pixel" ], "installed_at": "2022-07-23T07:02:04Z", "installed_at_sfdc": "2022-07-23T07:02:04+00:00", "name": "Pinterest Pixel", "uninstalled_at": "2022-07-29T13:43:17Z", "uninstalled_at_sfdc": "2022-07-29T13:43:17+00:00" }, "Printful": { "all_names": [ "Printful" ], "categories": [ "dropshipping", "print on demand (pod)" ], "installed_at": "2021-05-06T06:58:40Z", "installed_at_sfdc": "2021-05-06T06:58:40+00:00", "name": "Printful", "shopify_app": { "all_names": [ "Printful: Print on Demand", "Printful" ], "categories": [ "dropshipping", "print on demand (pod)" ], "installed_at": "2021-05-06T06:58:40Z", "installed_at_sfdc": "2021-05-06T06:58:40+00:00", "name": "Printful: Print on Demand", "platform": "shopify", "platform_install_rank": 12, "technology": "Printful" } }, "Rebolt ‑ Bundle Product": { "all_names": [ "Rebolt ‑ Bundle Product", "Rebolt Bundles Volume Discount", "Rebolt | Bundles \u0026 Upsells", "Rebolt ‑ Bundle Products" ], "categories": [ "product bundles", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Rebolt ‑ Bundle Product", "platform": "shopify", "platform_install_rank": 902, "uninstalled_at": "2023-03-11T04:17:45Z", "uninstalled_at_sfdc": "2023-03-11T04:17:45+00:00" }, "ReturnGO Returns \u0026 Exchanges": { "all_names": [ "ReturnGO Returns \u0026 Exchanges" ], "categories": [ "returns and exchanges", "order tracking" ], "installed_at": "2023-09-20T16:19:02Z", "installed_at_sfdc": "2023-09-20T16:19:02+00:00", "name": "ReturnGO Returns \u0026 Exchanges", "platform": "shopify", "platform_install_rank": 566 }, "Returnly": { "all_names": [ "Returnly" ], "categories": [ "returns and exchanges" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Returnly", "shopify_app": { "all_names": [ "Returnly by Affirm", "Returnly" ], "categories": [ "returns and exchanges" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Returnly by Affirm", "platform": "shopify", "platform_install_rank": 1547, "technology": "Returnly", "uninstalled_at": "2023-10-05T21:16:56Z", "uninstalled_at_sfdc": "2023-10-05T21:16:56+00:00" }, "uninstalled_at": "2023-10-05T21:16:56Z", "uninstalled_at_sfdc": "2023-10-05T21:16:56+00:00" }, "SEOAnt ‑ 404 Link Redirect": { "all_names": [ "SEOAnt ‑ 404 Link Redirect" ], "categories": [ "seo" ], "installed_at": "2023-04-12T09:37:38Z", "installed_at_sfdc": "2023-04-12T09:37:38+00:00", "name": "SEOAnt ‑ 404 Link Redirect", "platform": "shopify", "platform_install_rank": 402 }, "Shogun": { "all_names": [ "Shogun" ], "categories": [ "page builder", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Shogun", "shopify_app": { "all_names": [ "Shogun ‑ Landing Page Builder", "Shogun" ], "categories": [ "page builder", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Shogun ‑ Landing Page Builder", "platform": "shopify", "platform_install_rank": 38, "technology": "Shogun" } }, "Shop Pay": { "all_names": [ "Shop Pay" ], "installed_at": "2021-01-23T10:11:15Z", "installed_at_sfdc": "2021-01-23T10:11:15+00:00", "name": "Shop Pay" }, "Shopify Collective": { "all_names": [ "Shopify Collective" ], "installed_at": "2024-08-10T05:00:09Z", "installed_at_sfdc": "2024-08-10T05:00:09+00:00", "name": "Shopify Collective" }, "Shopify Fulfillment Network": { "all_names": [ "Shopify Fulfillment Network" ], "categories": [ "outsourced fulfillment", "fulfilling orders - other" ], "installed_at": "2023-11-23T21:39:50Z", "installed_at_sfdc": "2023-11-23T21:39:50+00:00", "name": "Shopify Fulfillment Network", "shopify_app": { "all_names": [ "Shopify Fulfillment Network" ], "categories": [ "outsourced fulfillment", "fulfilling orders - other" ], "installed_at": "2023-11-23T21:39:50Z", "installed_at_sfdc": "2023-11-23T21:39:50+00:00", "name": "Shopify Fulfillment Network", "platform": "shopify", "platform_install_rank": 2766, "technology": "Shopify Fulfillment Network", "uninstalled_at": "2023-12-13T18:57:07Z", "uninstalled_at_sfdc": "2023-12-13T18:57:07+00:00" }, "uninstalled_at": "2023-12-13T18:57:07Z", "uninstalled_at_sfdc": "2023-12-13T18:57:07+00:00" }, "Shopify Privacy \u0026 Compliance": { "all_names": [ "Shopify Privacy \u0026 Compliance" ], "categories": [ "privacy", "banners" ], "installed_at": "2021-03-17T14:00:18Z", "installed_at_sfdc": "2021-03-17T14:00:18+00:00", "name": "Shopify Privacy \u0026 Compliance", "platform": "shopify", "platform_install_rank": 147, "uninstalled_at": "2024-07-09T15:59:23Z", "uninstalled_at_sfdc": "2024-07-09T15:59:23+00:00" }, "Shopify Promise": { "all_names": [ "Shopify Promise" ], "installed_at": "2024-04-23T06:05:47Z", "installed_at_sfdc": "2024-04-23T06:05:47+00:00", "name": "Shopify Promise", "uninstalled_at": "2024-11-07T16:36:15Z", "uninstalled_at_sfdc": "2024-11-07T16:36:15+00:00" }, "Signifyd": { "all_names": [ "Signifyd" ], "categories": [ "fraud" ], "installed_at": "2020-12-03T10:47:41Z", "installed_at_sfdc": "2020-12-03T10:47:41+00:00", "name": "Signifyd", "shopify_app": { "all_names": [ "Signifyd‑Chargeback Protection", "Signifyd" ], "categories": [ "fraud" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Signifyd", "platform": "shopify", "platform_install_rank": 478, "technology": "Signifyd", "uninstalled_at": "2020-12-30T00:11:15Z", "uninstalled_at_sfdc": "2020-12-30T00:11:15+00:00" }, "uninstalled_at": "2020-12-30T00:11:15Z", "uninstalled_at_sfdc": "2020-12-30T00:11:15+00:00" }, "Simprosys Google Shopping Feed": { "all_names": [ "Simprosys Google Shopping Feed" ], "categories": [ "marketplaces", "product feeds" ], "installed_at": "2023-05-17T13:51:54Z", "installed_at_sfdc": "2023-05-17T13:51:54+00:00", "name": "Simprosys Google Shopping Feed", "platform": "shopify", "platform_install_rank": 29 }, "Snap Pixel": { "all_names": [ "Snap Pixel" ], "installed_at": "2022-07-23T07:02:04Z", "installed_at_sfdc": "2022-07-23T07:02:04+00:00", "name": "Snap Pixel", "uninstalled_at": "2022-07-29T13:43:17Z", "uninstalled_at_sfdc": "2022-07-29T13:43:17+00:00" }, "SwellRewards": { "all_names": [ "SwellRewards" ], "categories": [ "loyalty and rewards" ], "installed_at": "2022-07-30T06:10:44Z", "installed_at_sfdc": "2022-07-30T06:10:44+00:00", "name": "SwellRewards", "shopify_app": { "all_names": [ "Yotpo Loyalty Rewards Referral", "Yotpo: Loyalty Rewards Program", "Yotpo: Loyalty \u0026 Rewards", "SwellRewards" ], "categories": [ "loyalty and rewards" ], "installed_at": "2022-07-30T06:10:44Z", "installed_at_sfdc": "2022-07-30T06:10:44+00:00", "name": "Yotpo: Loyalty Rewards Program", "platform": "shopify", "platform_install_rank": 151, "technology": "SwellRewards", "uninstalled_at": "2023-02-10T18:44:45Z", "uninstalled_at_sfdc": "2023-02-10T18:44:45+00:00" }, "uninstalled_at": "2023-02-10T18:44:45Z", "uninstalled_at_sfdc": "2023-02-10T18:44:45+00:00" }, "Swym": { "all_names": [ "Swym" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Swym" }, "Swym Back in Stock Alerts": { "all_names": [ "Swym Back in Stock Alerts" ], "categories": [ "stock alerts", "email marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Swym Back in Stock Alerts", "platform": "shopify", "platform_install_rank": 82 }, "Swym Wishlist Plus": { "all_names": [ "Wishlist Plus", "Swym Wishlist Plus" ], "categories": [ "wishlists", "email marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Swym Wishlist Plus", "platform": "shopify", "platform_install_rank": 28 }, "Tapcart": { "all_names": [ "Tapcart" ], "categories": [ "mobile app builder" ], "installed_at": "2024-12-20T23:06:13Z", "installed_at_sfdc": "2024-12-20T23:06:13+00:00", "name": "Tapcart", "shopify_app": { "all_names": [ "Tapcart ‑ Mobile App Builder", "Tapcart" ], "categories": [ "mobile app builder" ], "installed_at": "2024-12-20T23:06:13Z", "installed_at_sfdc": "2024-12-20T23:06:13+00:00", "name": "Tapcart ‑ Mobile App Builder", "platform": "shopify", "platform_install_rank": 560, "technology": "Tapcart" } }, "TikTok Pixel": { "all_names": [ "TikTok Pixel" ], "installed_at": "2022-07-23T07:02:04Z", "installed_at_sfdc": "2022-07-23T07:02:04+00:00", "name": "TikTok Pixel" }, "Vimeo": { "all_names": [ "Vimeo" ], "installed_at": "2023-04-26T08:06:49Z", "installed_at_sfdc": "2023-04-26T08:06:49+00:00", "name": "Vimeo" }, "Warnify": { "all_names": [ "Warnify", "Product Warnings \u0026 Alerts" ], "categories": [ "pop-ups", "badges and icons" ], "installed_at": "2024-12-20T23:06:13Z", "installed_at_sfdc": "2024-12-20T23:06:13+00:00", "name": "Warnify", "platform": "shopify", "platform_install_rank": 587 }, "Warnify Pro Warnings": { "all_names": [ "Warnify Pro Warnings" ], "categories": [ "legal", "pop-ups" ], "installed_at": "2021-10-15T11:33:29Z", "installed_at_sfdc": "2021-10-15T11:33:29+00:00", "name": "Warnify Pro Warnings", "platform": "shopify", "platform_install_rank": 441 }, "YouTube Player": { "all_names": [ "YouTube Player" ], "installed_at": "2023-04-26T08:06:49Z", "installed_at_sfdc": "2023-04-26T08:06:49+00:00", "name": "YouTube Player" }, "Zendesk": { "all_names": [ "Zendesk" ], "categories": [ "helpdesk" ], "installed_at": "2022-12-09T17:44:38Z", "installed_at_sfdc": "2022-12-09T17:44:38+00:00", "name": "Zendesk", "shopify_app": { "all_names": [ "Zendesk" ], "categories": [ "helpdesk" ], "installed_at": "2022-12-09T17:44:38Z", "installed_at_sfdc": "2022-12-09T17:44:38+00:00", "name": "Zendesk", "platform": "shopify", "platform_install_rank": 80, "technology": "Zendesk" } }, "accessiBe": { "all_names": [ "accessiBe" ], "installed_at": "2021-06-02T05:35:24Z", "installed_at_sfdc": "2021-06-02T05:35:24+00:00", "name": "accessiBe", "uninstalled_at": "2022-07-08T01:29:15Z", "uninstalled_at_sfdc": "2022-07-08T01:29:15+00:00" } }, "app_details": { "1.banner-slider-1": { "all_names": [ "Banner Slider ‑ Image Slider" ], "categories": [ "store design" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Banner Slider ‑ Image Slider", "platform": "shopify", "platform_install_rank": 2346, "uninstalled_at": "2021-06-22T01:26:36Z", "uninstalled_at_sfdc": "2021-06-22T01:26:36+00:00" }, "1.because": { "all_names": [ "Because: CRO + Personalization" ], "categories": [ "upsell and cross-sell", "site optimization - other" ], "installed_at": "2023-06-28T13:48:54Z", "installed_at_sfdc": "2023-06-28T13:48:54+00:00", "name": "Because: CRO + Personalization", "platform": "shopify", "platform_install_rank": 1334 }, "1.broken-link-manager": { "all_names": [ "SEOAnt ‑ 404 Link Redirect" ], "categories": [ "seo" ], "installed_at": "2023-04-12T09:37:38Z", "installed_at_sfdc": "2023-04-12T09:37:38+00:00", "name": "SEOAnt ‑ 404 Link Redirect", "platform": "shopify", "platform_install_rank": 402 }, "1.bundle-products-by-thimatic": { "all_names": [ "Rebolt ‑ Bundle Product", "Rebolt Bundles Volume Discount", "Rebolt | Bundles \u0026 Upsells", "Rebolt ‑ Bundle Products" ], "categories": [ "product bundles", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Rebolt ‑ Bundle Product", "platform": "shopify", "platform_install_rank": 902, "uninstalled_at": "2023-03-11T04:17:45Z", "uninstalled_at_sfdc": "2023-03-11T04:17:45+00:00" }, "1.checkout-rules": { "all_names": [ "BeSure Checkout Rules" ], "categories": [ "cart customization", "checkout - other" ], "installed_at": "2023-10-13T16:34:56Z", "installed_at_sfdc": "2023-10-13T16:34:56+00:00", "name": "BeSure Checkout Rules", "platform": "shopify", "platform_install_rank": 791, "uninstalled_at": "2024-02-23T08:04:18Z", "uninstalled_at_sfdc": "2024-02-23T08:04:18+00:00" }, "1.cozy-gallery": { "all_names": [ "Cozy Image Gallery" ], "categories": [ "image gallery", "images and media - other" ], "installed_at": "2021-01-07T23:22:06Z", "installed_at_sfdc": "2021-01-07T23:22:06+00:00", "name": "Cozy Image Gallery", "platform": "shopify", "platform_install_rank": 533 }, "1.cozy-video-gallery": { "all_names": [ "Cozy YouTube Videos Gallery" ], "categories": [ "video and livestream", "images and media - other" ], "installed_at": "2022-01-05T16:57:37Z", "installed_at_sfdc": "2022-01-05T16:57:37+00:00", "name": "Cozy YouTube Videos Gallery", "platform": "shopify", "platform_install_rank": 1154 }, "1.customer-privacy-banner": { "all_names": [ "Shopify Privacy \u0026 Compliance" ], "categories": [ "privacy", "banners" ], "installed_at": "2021-03-17T14:00:18Z", "installed_at_sfdc": "2021-03-17T14:00:18+00:00", "name": "Shopify Privacy \u0026 Compliance", "platform": "shopify", "platform_install_rank": 147, "uninstalled_at": "2024-07-09T15:59:23Z", "uninstalled_at_sfdc": "2024-07-09T15:59:23+00:00" }, "1.gift-box": { "all_names": [ "Gift Box • Gift with Purchase", "Gift Box | Free Gift Purchase", "Gift Box | Free Gift Selection", "GB: Free Gift with Purchase", "Gift Box – Free Gift Motivator" ], "categories": [ "gifts - other", "giveaways and contests" ], "installed_at": "2021-12-11T14:54:58Z", "installed_at_sfdc": "2021-12-11T14:54:58+00:00", "name": "Gift Box • Gift with Purchase", "platform": "shopify", "platform_install_rank": 604, "uninstalled_at": "2022-10-10T20:52:55Z", "uninstalled_at_sfdc": "2022-10-10T20:52:55+00:00" }, "1.gifter-cart-auto-include": { "all_names": [ "EG Auto Add to Cart Free Gift" ], "categories": [ "cart customization", "discounts" ], "installed_at": "2023-01-11T13:49:00Z", "installed_at_sfdc": "2023-01-11T13:49:00+00:00", "name": "EG Auto Add to Cart Free Gift", "platform": "shopify", "platform_install_rank": 204 }, "1.google-shopping-feed": { "all_names": [ "Simprosys Google Shopping Feed" ], "categories": [ "marketplaces", "product feeds" ], "installed_at": "2023-05-17T13:51:54Z", "installed_at_sfdc": "2023-05-17T13:51:54+00:00", "name": "Simprosys Google Shopping Feed", "platform": "shopify", "platform_install_rank": 29 }, "1.hide-price-add-to-cart": { "all_names": [ "Extendons Hide Price", "Extendons Hide Price App" ], "categories": [ "pricing quotes", "pricing - other" ], "installed_at": "2021-02-19T00:57:50Z", "installed_at_sfdc": "2021-02-19T00:57:50+00:00", "name": "Extendons Hide Price", "platform": "shopify", "platform_install_rank": 1507, "uninstalled_at": "2021-04-03T13:41:25Z", "uninstalled_at_sfdc": "2021-04-03T13:41:25+00:00" }, "1.instant-search": { "all_names": [ "Fast Simon AI Search \u0026 Filters", "Fast Simon Search and Filters", "Instant Search Plus" ], "categories": [ "search and filters", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Fast Simon AI Search \u0026 Filters", "platform": "shopify", "platform_install_rank": 641, "technology": "Instant Search Plus" }, "1.klaviyo-email-marketing": { "all_names": [ "Klaviyo: Email Marketing \u0026 SMS", "Klaviyo" ], "categories": [ "email marketing", "sms marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Klaviyo: Email Marketing \u0026 SMS", "platform": "shopify", "platform_install_rank": 3, "technology": "Klaviyo" }, "1.lucky-orange": { "all_names": [ "Lucky Orange Heatmaps \u0026 Replay" ], "categories": [ "analytics", "site optimization - other" ], "installed_at": "2024-02-08T04:23:35Z", "installed_at_sfdc": "2024-02-08T04:23:35+00:00", "name": "Lucky Orange Heatmaps \u0026 Replay", "platform": "shopify", "platform_install_rank": 43, "uninstalled_at": "2024-03-05T14:31:26Z", "uninstalled_at_sfdc": "2024-03-05T14:31:26+00:00" }, "1.order-limits-minmaxify": { "all_names": [ "Minmaxify Order Limits", "Order Limits ‑ MinMaxify" ], "categories": [ "order limits" ], "installed_at": "2021-10-28T18:27:49Z", "installed_at_sfdc": "2021-10-28T18:27:49+00:00", "name": "Minmaxify Order Limits", "platform": "shopify", "platform_install_rank": 130 }, "1.printful": { "all_names": [ "Printful: Print on Demand", "Printful" ], "categories": [ "dropshipping", "print on demand (pod)" ], "installed_at": "2021-05-06T06:58:40Z", "installed_at_sfdc": "2021-05-06T06:58:40+00:00", "name": "Printful: Print on Demand", "platform": "shopify", "platform_install_rank": 12, "technology": "Printful" }, "1.product-filter-search": { "all_names": [ "Boost AI Search \u0026 Filter" ], "categories": [ "search and filters", "navigation and menus" ], "installed_at": "2022-03-29T17:07:04Z", "installed_at_sfdc": "2022-03-29T17:07:04+00:00", "name": "Boost AI Search \u0026 Filter", "platform": "shopify", "platform_install_rank": 79 }, "1.product-warnings": { "all_names": [ "Warnify Pro Warnings" ], "categories": [ "legal", "pop-ups" ], "installed_at": "2021-10-15T11:33:29Z", "installed_at_sfdc": "2021-10-15T11:33:29+00:00", "name": "Warnify Pro Warnings", "platform": "shopify", "platform_install_rank": 441 }, "1.purchase-limit": { "all_names": [ "KOR Order Limits Quantity", "KOR Order Limit Quantity" ], "categories": [ "order limits", "inventory optimization" ], "installed_at": "2021-10-28T18:27:49Z", "installed_at_sfdc": "2021-10-28T18:27:49+00:00", "name": "KOR Order Limits Quantity", "platform": "shopify", "platform_install_rank": 793, "uninstalled_at": "2021-11-04T05:22:47Z", "uninstalled_at_sfdc": "2021-11-04T05:22:47+00:00" }, "1.returngo": { "all_names": [ "ReturnGO Returns \u0026 Exchanges" ], "categories": [ "returns and exchanges", "order tracking" ], "installed_at": "2023-09-20T16:19:02Z", "installed_at_sfdc": "2023-09-20T16:19:02+00:00", "name": "ReturnGO Returns \u0026 Exchanges", "platform": "shopify", "platform_install_rank": 566 }, "1.returnly": { "all_names": [ "Returnly by Affirm", "Returnly" ], "categories": [ "returns and exchanges" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Returnly by Affirm", "platform": "shopify", "platform_install_rank": 1547, "technology": "Returnly", "uninstalled_at": "2023-10-05T21:16:56Z", "uninstalled_at_sfdc": "2023-10-05T21:16:56+00:00" }, "1.shogun": { "all_names": [ "Shogun ‑ Landing Page Builder", "Shogun" ], "categories": [ "page builder", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Shogun ‑ Landing Page Builder", "platform": "shopify", "platform_install_rank": 38, "technology": "Shogun" }, "1.shopify-fulfillment-network": { "all_names": [ "Shopify Fulfillment Network" ], "categories": [ "outsourced fulfillment", "fulfilling orders - other" ], "installed_at": "2023-11-23T21:39:50Z", "installed_at_sfdc": "2023-11-23T21:39:50+00:00", "name": "Shopify Fulfillment Network", "platform": "shopify", "platform_install_rank": 2766, "technology": "Shopify Fulfillment Network", "uninstalled_at": "2023-12-13T18:57:07Z", "uninstalled_at_sfdc": "2023-12-13T18:57:07+00:00" }, "1.shopify-mobile-apps": { "all_names": [ "Tapcart ‑ Mobile App Builder", "Tapcart" ], "categories": [ "mobile app builder" ], "installed_at": "2024-12-20T23:06:13Z", "installed_at_sfdc": "2024-12-20T23:06:13+00:00", "name": "Tapcart ‑ Mobile App Builder", "platform": "shopify", "platform_install_rank": 560, "technology": "Tapcart" }, "1.signifyd": { "all_names": [ "Signifyd‑Chargeback Protection", "Signifyd" ], "categories": [ "fraud" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Signifyd", "platform": "shopify", "platform_install_rank": 478, "technology": "Signifyd", "uninstalled_at": "2020-12-30T00:11:15Z", "uninstalled_at_sfdc": "2020-12-30T00:11:15+00:00" }, "1.store-locator-4": { "all_names": [ "Amai ProMap ‑ Store Locator", "ProMap ‑ Store Locator" ], "categories": [ "store locator", "internationalization - other" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Amai ProMap ‑ Store Locator", "platform": "shopify", "platform_install_rank": 456, "uninstalled_at": "2023-03-11T04:17:45Z", "uninstalled_at_sfdc": "2023-03-11T04:17:45+00:00" }, "1.swell": { "all_names": [ "Yotpo Loyalty Rewards Referral", "Yotpo: Loyalty Rewards Program", "Yotpo: Loyalty \u0026 Rewards", "SwellRewards" ], "categories": [ "loyalty and rewards" ], "installed_at": "2022-07-30T06:10:44Z", "installed_at_sfdc": "2022-07-30T06:10:44+00:00", "name": "Yotpo: Loyalty Rewards Program", "platform": "shopify", "platform_install_rank": 151, "technology": "SwellRewards", "uninstalled_at": "2023-02-10T18:44:45Z", "uninstalled_at_sfdc": "2023-02-10T18:44:45+00:00" }, "1.swym-relay": { "all_names": [ "Wishlist Plus", "Swym Wishlist Plus" ], "categories": [ "wishlists", "email marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Swym Wishlist Plus", "platform": "shopify", "platform_install_rank": 28 }, "1.warnify-product-warnings": { "all_names": [ "Warnify", "Product Warnings \u0026 Alerts" ], "categories": [ "pop-ups", "badges and icons" ], "installed_at": "2024-12-20T23:06:13Z", "installed_at_sfdc": "2024-12-20T23:06:13+00:00", "name": "Warnify", "platform": "shopify", "platform_install_rank": 587 }, "1.watchlist": { "all_names": [ "Swym Back in Stock Alerts" ], "categories": [ "stock alerts", "email marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Swym Back in Stock Alerts", "platform": "shopify", "platform_install_rank": 82 }, "1.zendesk": { "all_names": [ "Zendesk" ], "categories": [ "helpdesk" ], "installed_at": "2022-12-09T17:44:38Z", "installed_at_sfdc": "2022-12-09T17:44:38+00:00", "name": "Zendesk", "platform": "shopify", "platform_install_rank": 80, "technology": "Zendesk" } }, "avg_price": 3259, "avg_price_usd": 3259, "avg_weight": 348, "brand_advocate_page_url": "", "brands_page_url": "", "categories": [ "/Arts \u0026 Entertainment/Comics \u0026 Animation/Cartoons", "/Toys \u0026 Hobbies" ], "city": "Torrance", "cluster_domains": [ "www.sanrio.com", "www.sanrio.com.tw", "sanrio.com.co", "shop.baby.sanrio.co.jp", "stg-shop.baby.sanrio.co.jp" ], "combined_followers": 7874400, "contact_info": [ { "followers": 3900000, "type": "youtube", "url": "https://www.youtube.com/@HelloKittyandFriends", "value": "hellokittyandfriends" }, { "type": "email", "value": "pr@sanrio.com" }, { "type": "phone", "value": "+1 800-759-6454" }, { "followers": 330300, "type": "twitter", "url": "https://twitter.com/sanrio", "value": "sanrio" }, { "followers": 0, "type": "facebook", "url": "https://www.facebook.com/hellokitty", "value": "hellokitty" }, { "followers": 0, "type": "instagram", "url": "https://instagram.com/sanrio", "value": "sanrio" }, { "followers": 44100, "type": "pinterest", "url": "https://pinterest.com/sanrio", "value": "sanrio" }, { "followers": 3600000, "type": "tiktok", "url": "https://www.tiktok.com/@sanrio", "value": "@sanrio" }, { "followers": 0, "type": "linkedin", "url": "https://www.linkedin.com/company/sanrio-inc.", "value": "sanrio-inc." } ], "contact_page_url": "", "copyright": "SANRIO CO., LTD", "country_code": "US", "currency_code": "USD", "estimated_page_views": 50767098, "estimated_sales": 4827763285, "estimated_visits": 13138245, "faq_page_url": "", "features": [ "Wholesale/Retailers Page", "Shopify Online Store 2.0", "New Shopify Checkout (2022)", "Accepts Gift Cards", "Tracking or Returns", "Returns Page", "Store Locator Page", "Has Blog", "Sizing Page" ], "financing_page_url": "", "id": 28593626, "klaviyo_features": [ "Email Collection", "Phone Collection", "Back In Stock", "Click-to-Text Form" ], "language_code": "en", "localization_count": 0, "localizations": null, "max_price": 84900, "merchant_name": "Sanrio", "min_price": 199, "name": "www.sanrio.com", "pinterest_followers": 44100, "plan": "Shopify Plus", "platform": "shopify", "platform_rank": 3, "postal_code": "", "product_count": 3347, "products_created_30": 0, "products_created_365": 1492, "products_created_90": 61, "rank": 140, "retailer_page_url": "https://www.enescobusiness.com/become-a-retailer/", "returns_page_url": "https://www.sanrio.com/pages/sanrios-aggretsuko-will-return-to-netflix-for-season-2", "shopify_app_names": [ "Because: CRO + Personalization", "SEOAnt ‑ 404 Link Redirect", "Cozy Image Gallery", "Cozy YouTube Videos Gallery", "EG Auto Add to Cart Free Gift", "Simprosys Google Shopping Feed", "Fast Simon AI Search \u0026 Filters", "Klaviyo: Email Marketing \u0026 SMS", "Minmaxify Order Limits", "Printful: Print on Demand", "Boost AI Search \u0026 Filter", "Warnify Pro Warnings", "ReturnGO Returns \u0026 Exchanges", "Shogun ‑ Landing Page Builder", "Tapcart ‑ Mobile App Builder", "Swym Wishlist Plus", "Warnify", "Swym Back in Stock Alerts", "Zendesk" ], "shopify_app_tokens": [ "because", "broken-link-manager", "cozy-gallery", "cozy-video-gallery", "gifter-cart-auto-include", "google-shopping-feed", "instant-search", "klaviyo-email-marketing", "order-limits-minmaxify", "printful", "product-filter-search", "product-warnings", "returngo", "shogun", "shopify-mobile-apps", "swym-relay", "warnify-product-warnings", "watchlist", "zendesk" ], "state": "Active", "store_locator_page_url": "https://www.sanrio.com/pages/store-locator-2023", "technologies": [ "Apple Pay", "Arrive", "Cloudflare", "Cloudflare CDN", "Facebook Pixel", "Google Adsense", "Google Pay", "Google Tag Manager", "Instant Search Plus", "Klaviyo", "PayPal Express Checkout", "Printful", "Shogun", "Shop Pay", "Shopify Collective", "Swym", "Tapcart", "TikTok Pixel", "Vimeo", "YouTube Player", "Zendesk" ], "technology_details": { "Apple Pay": { "all_names": [ "Apple Pay" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Apple Pay" }, "Arrive": { "all_names": [ "Arrive" ], "installed_at": "2024-02-16T02:21:08Z", "installed_at_sfdc": "2024-02-16T02:21:08+00:00", "name": "Arrive" }, "Cloudflare": { "all_names": [ "Cloudflare" ], "installed_at": "2023-10-31T23:57:24Z", "installed_at_sfdc": "2023-10-31T23:57:24+00:00", "name": "Cloudflare" }, "Cloudflare CDN": { "all_names": [ "Cloudflare CDN" ], "installed_at": "2021-06-08T15:55:00Z", "installed_at_sfdc": "2021-06-08T15:55:00+00:00", "name": "Cloudflare CDN" }, "Facebook Pixel": { "all_names": [ "Facebook Pixel" ], "installed_at": "2020-11-25T11:52:34Z", "installed_at_sfdc": "2020-11-25T11:52:34+00:00", "name": "Facebook Pixel" }, "Google Ads Pixel": { "all_names": [ "Google Ads Pixel" ], "installed_at": "2021-01-23T10:11:15Z", "installed_at_sfdc": "2021-01-23T10:11:15+00:00", "name": "Google Ads Pixel", "uninstalled_at": "2023-05-17T13:51:54Z", "uninstalled_at_sfdc": "2023-05-17T13:51:54+00:00" }, "Google Adsense": { "all_names": [ "Google Adsense" ], "installed_at": "2023-03-04T10:28:34Z", "installed_at_sfdc": "2023-03-04T10:28:34+00:00", "name": "Google Adsense" }, "Google Analytics": { "all_names": [ "Google Analytics" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Google Analytics", "uninstalled_at": "2025-02-25T21:15:24Z", "uninstalled_at_sfdc": "2025-02-25T21:15:24+00:00" }, "Google Analytics Enhanced Ecommerce": { "all_names": [ "Google Analytics Enhanced Ecommerce" ], "installed_at": "2022-06-02T07:21:11Z", "installed_at_sfdc": "2022-06-02T07:21:11+00:00", "name": "Google Analytics Enhanced Ecommerce", "uninstalled_at": "2025-02-25T21:15:24Z", "uninstalled_at_sfdc": "2025-02-25T21:15:24+00:00" }, "Google Pay": { "all_names": [ "Google Pay" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Google Pay" }, "Google Tag Manager": { "all_names": [ "Google Tag Manager" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Google Tag Manager" }, "Instant Search Plus": { "all_names": [ "Instant Search Plus" ], "categories": [ "search and filters", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Instant Search Plus", "shopify_app": { "all_names": [ "Fast Simon AI Search \u0026 Filters", "Fast Simon Search and Filters", "Instant Search Plus" ], "categories": [ "search and filters", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Fast Simon AI Search \u0026 Filters", "platform": "shopify", "platform_install_rank": 641, "technology": "Instant Search Plus" } }, "Klaviyo": { "all_names": [ "Klaviyo" ], "categories": [ "email marketing", "sms marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Klaviyo", "shopify_app": { "all_names": [ "Klaviyo: Email Marketing \u0026 SMS", "Klaviyo" ], "categories": [ "email marketing", "sms marketing" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Klaviyo: Email Marketing \u0026 SMS", "platform": "shopify", "platform_install_rank": 3, "technology": "Klaviyo" } }, "Noibu": { "all_names": [ "Noibu" ], "installed_at": "2023-03-04T10:28:34Z", "installed_at_sfdc": "2023-03-04T10:28:34+00:00", "name": "Noibu", "uninstalled_at": "2023-05-03T05:38:47Z", "uninstalled_at_sfdc": "2023-05-03T05:38:47+00:00" }, "PayPal": { "all_names": [ "PayPal" ], "installed_at": "2023-10-31T23:57:24Z", "installed_at_sfdc": "2023-10-31T23:57:24+00:00", "name": "PayPal", "uninstalled_at": "2024-10-04T04:26:05Z", "uninstalled_at_sfdc": "2024-10-04T04:26:05+00:00" }, "PayPal Express Checkout": { "all_names": [ "PayPal Express Checkout" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "PayPal Express Checkout" }, "Pinterest Pixel": { "all_names": [ "Pinterest Pixel" ], "installed_at": "2022-07-23T07:02:04Z", "installed_at_sfdc": "2022-07-23T07:02:04+00:00", "name": "Pinterest Pixel", "uninstalled_at": "2022-07-29T13:43:17Z", "uninstalled_at_sfdc": "2022-07-29T13:43:17+00:00" }, "Printful": { "all_names": [ "Printful" ], "categories": [ "dropshipping", "print on demand (pod)" ], "installed_at": "2021-05-06T06:58:40Z", "installed_at_sfdc": "2021-05-06T06:58:40+00:00", "name": "Printful", "shopify_app": { "all_names": [ "Printful: Print on Demand", "Printful" ], "categories": [ "dropshipping", "print on demand (pod)" ], "installed_at": "2021-05-06T06:58:40Z", "installed_at_sfdc": "2021-05-06T06:58:40+00:00", "name": "Printful: Print on Demand", "platform": "shopify", "platform_install_rank": 12, "technology": "Printful" } }, "Returnly": { "all_names": [ "Returnly" ], "categories": [ "returns and exchanges" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Returnly", "shopify_app": { "all_names": [ "Returnly by Affirm", "Returnly" ], "categories": [ "returns and exchanges" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Returnly by Affirm", "platform": "shopify", "platform_install_rank": 1547, "technology": "Returnly", "uninstalled_at": "2023-10-05T21:16:56Z", "uninstalled_at_sfdc": "2023-10-05T21:16:56+00:00" }, "uninstalled_at": "2023-10-05T21:16:56Z", "uninstalled_at_sfdc": "2023-10-05T21:16:56+00:00" }, "Shogun": { "all_names": [ "Shogun" ], "categories": [ "page builder", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Shogun", "shopify_app": { "all_names": [ "Shogun ‑ Landing Page Builder", "Shogun" ], "categories": [ "page builder", "upsell and cross-sell" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Shogun ‑ Landing Page Builder", "platform": "shopify", "platform_install_rank": 38, "technology": "Shogun" } }, "Shop Pay": { "all_names": [ "Shop Pay" ], "installed_at": "2021-01-23T10:11:15Z", "installed_at_sfdc": "2021-01-23T10:11:15+00:00", "name": "Shop Pay" }, "Shopify Collective": { "all_names": [ "Shopify Collective" ], "installed_at": "2024-08-10T05:00:09Z", "installed_at_sfdc": "2024-08-10T05:00:09+00:00", "name": "Shopify Collective" }, "Shopify Fulfillment Network": { "all_names": [ "Shopify Fulfillment Network" ], "categories": [ "outsourced fulfillment", "fulfilling orders - other" ], "installed_at": "2023-11-23T21:39:50Z", "installed_at_sfdc": "2023-11-23T21:39:50+00:00", "name": "Shopify Fulfillment Network", "shopify_app": { "all_names": [ "Shopify Fulfillment Network" ], "categories": [ "outsourced fulfillment", "fulfilling orders - other" ], "installed_at": "2023-11-23T21:39:50Z", "installed_at_sfdc": "2023-11-23T21:39:50+00:00", "name": "Shopify Fulfillment Network", "platform": "shopify", "platform_install_rank": 2766, "technology": "Shopify Fulfillment Network", "uninstalled_at": "2023-12-13T18:57:07Z", "uninstalled_at_sfdc": "2023-12-13T18:57:07+00:00" }, "uninstalled_at": "2023-12-13T18:57:07Z", "uninstalled_at_sfdc": "2023-12-13T18:57:07+00:00" }, "Shopify Promise": { "all_names": [ "Shopify Promise" ], "installed_at": "2024-04-23T06:05:47Z", "installed_at_sfdc": "2024-04-23T06:05:47+00:00", "name": "Shopify Promise", "uninstalled_at": "2024-11-07T16:36:15Z", "uninstalled_at_sfdc": "2024-11-07T16:36:15+00:00" }, "Signifyd": { "all_names": [ "Signifyd" ], "categories": [ "fraud" ], "installed_at": "2020-12-03T10:47:41Z", "installed_at_sfdc": "2020-12-03T10:47:41+00:00", "name": "Signifyd", "shopify_app": { "all_names": [ "Signifyd‑Chargeback Protection", "Signifyd" ], "categories": [ "fraud" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Signifyd", "platform": "shopify", "platform_install_rank": 478, "technology": "Signifyd", "uninstalled_at": "2020-12-30T00:11:15Z", "uninstalled_at_sfdc": "2020-12-30T00:11:15+00:00" }, "uninstalled_at": "2020-12-30T00:11:15Z", "uninstalled_at_sfdc": "2020-12-30T00:11:15+00:00" }, "Snap Pixel": { "all_names": [ "Snap Pixel" ], "installed_at": "2022-07-23T07:02:04Z", "installed_at_sfdc": "2022-07-23T07:02:04+00:00", "name": "Snap Pixel", "uninstalled_at": "2022-07-29T13:43:17Z", "uninstalled_at_sfdc": "2022-07-29T13:43:17+00:00" }, "SwellRewards": { "all_names": [ "SwellRewards" ], "categories": [ "loyalty and rewards" ], "installed_at": "2022-07-30T06:10:44Z", "installed_at_sfdc": "2022-07-30T06:10:44+00:00", "name": "SwellRewards", "shopify_app": { "all_names": [ "Yotpo Loyalty Rewards Referral", "Yotpo: Loyalty Rewards Program", "Yotpo: Loyalty \u0026 Rewards", "SwellRewards" ], "categories": [ "loyalty and rewards" ], "installed_at": "2022-07-30T06:10:44Z", "installed_at_sfdc": "2022-07-30T06:10:44+00:00", "name": "Yotpo: Loyalty Rewards Program", "platform": "shopify", "platform_install_rank": 151, "technology": "SwellRewards", "uninstalled_at": "2023-02-10T18:44:45Z", "uninstalled_at_sfdc": "2023-02-10T18:44:45+00:00" }, "uninstalled_at": "2023-02-10T18:44:45Z", "uninstalled_at_sfdc": "2023-02-10T18:44:45+00:00" }, "Swym": { "all_names": [ "Swym" ], "installed_at": "2020-11-15T14:07:31Z", "installed_at_sfdc": "2020-11-15T14:07:31+00:00", "name": "Swym" }, "Tapcart": { "all_names": [ "Tapcart" ], "categories": [ "mobile app builder" ], "installed_at": "2024-12-20T23:06:13Z", "installed_at_sfdc": "2024-12-20T23:06:13+00:00", "name": "Tapcart", "shopify_app": { "all_names": [ "Tapcart ‑ Mobile App Builder", "Tapcart" ], "categories": [ "mobile app builder" ], "installed_at": "2024-12-20T23:06:13Z", "installed_at_sfdc": "2024-12-20T23:06:13+00:00", "name": "Tapcart ‑ Mobile App Builder", "platform": "shopify", "platform_install_rank": 560, "technology": "Tapcart" } }, "TikTok Pixel": { "all_names": [ "TikTok Pixel" ], "installed_at": "2022-07-23T07:02:04Z", "installed_at_sfdc": "2022-07-23T07:02:04+00:00", "name": "TikTok Pixel" }, "Vimeo": { "all_names": [ "Vimeo" ], "installed_at": "2023-04-26T08:06:49Z", "installed_at_sfdc": "2023-04-26T08:06:49+00:00", "name": "Vimeo" }, "YouTube Player": { "all_names": [ "YouTube Player" ], "installed_at": "2023-04-26T08:06:49Z", "installed_at_sfdc": "2023-04-26T08:06:49+00:00", "name": "YouTube Player" }, "Zendesk": { "all_names": [ "Zendesk" ], "categories": [ "helpdesk" ], "installed_at": "2022-12-09T17:44:38Z", "installed_at_sfdc": "2022-12-09T17:44:38+00:00", "name": "Zendesk", "shopify_app": { "all_names": [ "Zendesk" ], "categories": [ "helpdesk" ], "installed_at": "2022-12-09T17:44:38Z", "installed_at_sfdc": "2022-12-09T17:44:38+00:00", "name": "Zendesk", "platform": "shopify", "platform_install_rank": 80, "technology": "Zendesk" } }, "accessiBe": { "all_names": [ "accessiBe" ], "installed_at": "2021-06-02T05:35:24Z", "installed_at_sfdc": "2021-06-02T05:35:24+00:00", "name": "accessiBe", "uninstalled_at": "2022-07-08T01:29:15Z", "uninstalled_at_sfdc": "2022-07-08T01:29:15+00:00" } }, "tiktok_followers": 3600000, "tracking_page_url": "", "twitter_followers": 330300, "warranty_page_url": "", "youtube_followers": 3900000 }, "now": "2025-06-17T07:50:47.648066088Z" }
CRM Attributes
If a CRM integration is enabled, attributes from the CRM can be referenced within calculated values.
With the Salesforce integration, Account fields are accessible under the _salesforce key. For instance:
With the HubSpot integration, Company properties are accessible under the _hubspot key. For instance:
As an example, the following expression returns true for Salesforce Accounts that have a Parent record.
has(_salesforce.ParentId)
Note: To use CRM attributes, the attributes need to be synchronized from the CRM into the Store Leads database. This process can take a few hours. As a result, it is not possible to interactively test expressions referencing CRM attributes if the CRM attribute has not yet been referenced in another expression (since the attribute has not yet been synchronized to the Store Leads database).