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" ordered 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": "https://verabradley.com/pages/about-us",
"administrative_area_level_1": "Indiana",
"aliases": [
"devonsawaissoback.com"
],
"alternates": null,
"app_and_tech_details": {
"4Cite": {
"all_names": [
"4Cite"
],
"installed_at": "2022-08-19T11:50:44Z",
"installed_at_sfdc": "2022-08-19T11:50:44+00:00",
"name": "4Cite",
"uninstalled_at": "2023-05-11T03:45:27Z",
"uninstalled_at_sfdc": "2023-05-11T03:45:27+00:00"
},
"Adyen Online Payments": {
"all_names": [
"Adyen Online Payments"
],
"installed_at": "2026-04-20T19:27:12Z",
"installed_at_sfdc": "2026-04-20T19:27:12+00:00",
"name": "Adyen Online Payments",
"uninstalled_at": "2026-05-21T22:25:58Z",
"uninstalled_at_sfdc": "2026-05-21T22:25:58+00:00"
},
"Afterpay": {
"all_names": [
"Afterpay"
],
"installed_at": "2021-03-11T04:17:14Z",
"installed_at_sfdc": "2021-03-11T04:17:14+00:00",
"name": "Afterpay"
},
"Apple Pay": {
"all_names": [
"Apple Pay"
],
"installed_at": "2026-05-26T18:01:00Z",
"installed_at_sfdc": "2026-05-26T18:01:00+00:00",
"name": "Apple Pay"
},
"Arrive": {
"all_names": [
"Arrive"
],
"installed_at": "2024-02-16T02:04:28Z",
"installed_at_sfdc": "2024-02-16T02:04:28+00:00",
"name": "Arrive"
},
"Bambuser": {
"all_names": [
"Bambuser"
],
"installed_at": "2022-04-27T10:46:28Z",
"installed_at_sfdc": "2022-04-27T10:46:28+00:00",
"name": "Bambuser",
"uninstalled_at": "2023-12-27T11:13:04Z",
"uninstalled_at_sfdc": "2023-12-27T11:13:04+00:00"
},
"Bing Ads": {
"all_names": [
"Bing Ads"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Bing Ads"
},
"Bold AI Upsell \u0026 Cross‑Sell": {
"all_names": [
"Bold AI Upsell \u0026 Cross‑Sell",
"BOLD Upsell: Upsell Everywhere",
"BOLD Upsell AI Powered Upsells",
"BOLD Upsell AI Smart Upselling",
"BOLD AI Upsell \u0026 Cross‑Sell"
],
"categories": [
"upsell and cross-sell",
"cart customization"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Bold AI Upsell \u0026 Cross‑Sell",
"platform": "shopify",
"platform_install_rank": 230,
"uninstalled_at": "2020-09-12T15:57:11Z",
"uninstalled_at_sfdc": "2020-09-12T15:57:11+00:00"
},
"Bold Bundles ‑ Product Bundles": {
"all_names": [
"Bold Bundles ‑ Product Bundles",
"BOLD Bundles ‑ Product Bundles"
],
"categories": [
"product bundles",
"upsell and cross-sell"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Bold Bundles ‑ Product Bundles",
"platform": "shopify",
"platform_install_rank": 590,
"uninstalled_at": "2020-10-21T18:12:23Z",
"uninstalled_at_sfdc": "2020-10-21T18:12:23+00:00"
},
"Bold Cashier": {
"all_names": [
"Bold Cashier"
],
"categories": [],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Bold Cashier",
"platform": "shopify",
"platform_install_rank": 3316,
"uninstalled_at": "2024-08-22T08:49:51Z",
"uninstalled_at_sfdc": "2024-08-22T08:49:51+00:00"
},
"Bold Commerce Platform": {
"all_names": [
"Bold Commerce Platform"
],
"installed_at": "2023-08-18T18:02:00Z",
"installed_at_sfdc": "2023-08-18T18:02:00+00:00",
"name": "Bold Commerce Platform"
},
"Cloudflare": {
"all_names": [
"Cloudflare"
],
"installed_at": "2023-10-31T23:28:22Z",
"installed_at_sfdc": "2023-10-31T23:28:22+00:00",
"name": "Cloudflare"
},
"Cloudflare CDN": {
"all_names": [
"Cloudflare CDN"
],
"installed_at": "2021-06-08T15:50:30Z",
"installed_at_sfdc": "2021-06-08T15:50:30+00:00",
"name": "Cloudflare CDN"
},
"Confetti": {
"all_names": [
"Confetti",
"Confetti ‑ Pasilobus",
"Pasilobus Confetti",
"Confetti ‑ Pasilobus.",
"pasilobus: Confetti"
],
"categories": [
"design elements - other"
],
"installed_at": "2026-04-09T16:10:12Z",
"installed_at_sfdc": "2026-04-09T16:10:12+00:00",
"name": "Confetti",
"platform": "shopify",
"platform_install_rank": 2112,
"uninstalled_at": "2026-04-30T17:07:54Z",
"uninstalled_at_sfdc": "2026-04-30T17:07:54+00:00"
},
"Criteo": {
"all_names": [
"Criteo"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Criteo",
"uninstalled_at": "2023-01-12T14:45:57Z",
"uninstalled_at_sfdc": "2023-01-12T14:45:57+00:00"
},
"Custom Pricing: Wholesale B2B": {
"all_names": [
"Custom Pricing: Wholesale B2B",
"Bold Custom Pricing: Wholesale",
"BOLD Custom Pricing: Wholesale"
],
"categories": [
"wholesale",
"discounts"
],
"installed_at": "2022-03-30T12:41:57Z",
"installed_at_sfdc": "2022-03-30T12:41:57+00:00",
"name": "Custom Pricing: Wholesale B2B",
"platform": "shopify",
"platform_install_rank": 492,
"uninstalled_at": "2024-07-11T15:48:26Z",
"uninstalled_at_sfdc": "2024-07-11T15:48:26+00:00"
},
"Facebook Pixel": {
"all_names": [
"Facebook Pixel"
],
"installed_at": "2022-07-19T03:23:51Z",
"installed_at_sfdc": "2022-07-19T03:23:51+00:00",
"name": "Facebook Pixel",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"GRIN": {
"all_names": [
"GRIN"
],
"categories": [
"affiliate programs"
],
"installed_at": "2022-08-02T04:30:05Z",
"installed_at_sfdc": "2022-08-02T04:30:05+00:00",
"name": "GRIN",
"shopify_app": {
"all_names": [
"GRIN Influencer Marketing",
"GRIN"
],
"categories": [
"affiliate programs"
],
"installed_at": "2025-05-12T21:11:21Z",
"installed_at_sfdc": "2025-05-12T21:11:21+00:00",
"name": "GRIN Influencer Marketing",
"platform": "shopify",
"platform_install_rank": 895,
"technology": "GRIN",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"Gleam Competitions": {
"all_names": [
"Gleam Competitions"
],
"categories": [
"giveaways and contests",
"pop-ups"
],
"installed_at": "2026-01-20T01:58:43Z",
"installed_at_sfdc": "2026-01-20T01:58:43+00:00",
"name": "Gleam Competitions",
"platform": "shopify",
"platform_install_rank": 1528
},
"Global-e": {
"all_names": [
"Global-e"
],
"installed_at": "2021-03-27T11:23:07Z",
"installed_at_sfdc": "2021-03-27T11:23:07+00:00",
"name": "Global-e",
"uninstalled_at": "2021-11-29T16:32:53Z",
"uninstalled_at_sfdc": "2021-11-29T16:32:53+00:00"
},
"Google Ads Pixel": {
"all_names": [
"Google Ads Pixel"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Google Ads Pixel"
},
"Google Adsense": {
"all_names": [
"Google Adsense"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Google Adsense"
},
"Google Analytics": {
"all_names": [
"Google Analytics"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Google Analytics",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"Google Analytics 4": {
"all_names": [
"Google Analytics 4"
],
"installed_at": "2024-09-16T20:37:01Z",
"installed_at_sfdc": "2024-09-16T20:37:01+00:00",
"name": "Google Analytics 4",
"uninstalled_at": "2025-05-12T22:30:10Z",
"uninstalled_at_sfdc": "2025-05-12T22:30:10+00:00"
},
"Google Analytics Enhanced Ecommerce": {
"all_names": [
"Google Analytics Enhanced Ecommerce"
],
"installed_at": "2022-07-19T03:23:51Z",
"installed_at_sfdc": "2022-07-19T03:23:51+00:00",
"name": "Google Analytics Enhanced Ecommerce",
"uninstalled_at": "2022-07-29T13:38:17Z",
"uninstalled_at_sfdc": "2022-07-29T13:38:17+00:00"
},
"Google Pay": {
"all_names": [
"Google Pay"
],
"installed_at": "2026-05-26T18:01:00Z",
"installed_at_sfdc": "2026-05-26T18:01:00+00:00",
"name": "Google Pay"
},
"Google Tag Manager": {
"all_names": [
"Google Tag Manager"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Google Tag Manager"
},
"Klevu": {
"all_names": [
"Klevu"
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"installed_at": "2025-06-24T20:24:56Z",
"installed_at_sfdc": "2025-06-24T20:24:56+00:00",
"name": "Klevu",
"shopify_app": {
"all_names": [
"Klevu ‑ AI Search \u0026 Discovery",
"Klevu"
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"installed_at": "2025-06-24T20:24:56Z",
"installed_at_sfdc": "2025-06-24T20:24:56+00:00",
"name": "Klevu ‑ AI Search \u0026 Discovery",
"platform": "shopify",
"platform_install_rank": 1417,
"technology": "Klevu"
}
},
"LinkShare": {
"all_names": [
"LinkShare"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "LinkShare"
},
"Loop Commerce": {
"all_names": [
"Loop Commerce"
],
"installed_at": "2020-08-26T11:32:52Z",
"installed_at_sfdc": "2020-08-26T11:32:52+00:00",
"name": "Loop Commerce",
"uninstalled_at": "2023-01-04T15:19:24Z",
"uninstalled_at_sfdc": "2023-01-04T15:19:24+00:00"
},
"Lucky Orange Heatmaps \u0026 Replay": {
"all_names": [
"Lucky Orange Heatmaps \u0026 Replay"
],
"categories": [
"analytics",
"site optimization - other"
],
"installed_at": "2023-05-11T03:45:27Z",
"installed_at_sfdc": "2023-05-11T03:45:27+00:00",
"name": "Lucky Orange Heatmaps \u0026 Replay",
"platform": "shopify",
"platform_install_rank": 73,
"uninstalled_at": "2024-03-05T13:59:04Z",
"uninstalled_at_sfdc": "2024-03-05T13:59:04+00:00"
},
"Microsoft Clarity": {
"all_names": [
"Microsoft Clarity"
],
"installed_at": "2025-10-03T01:18:54Z",
"installed_at_sfdc": "2025-10-03T01:18:54+00:00",
"name": "Microsoft Clarity"
},
"Microsoft Clarity: AI Insights": {
"all_names": [
"Microsoft Clarity: AI Insights"
],
"categories": [
"analytics",
"site optimization - other"
],
"installed_at": "2026-01-12T02:19:39Z",
"installed_at_sfdc": "2026-01-12T02:19:39+00:00",
"name": "Microsoft Clarity: AI Insights",
"platform": "shopify",
"platform_install_rank": 15
},
"Mimecast Email Security": {
"all_names": [
"Mimecast Email Security"
],
"installed_at": "2026-05-05T17:06:58Z",
"installed_at_sfdc": "2026-05-05T17:06:58+00:00",
"name": "Mimecast Email Security"
},
"Monetate": {
"all_names": [
"Monetate"
],
"installed_at": "2022-10-19T13:33:03Z",
"installed_at_sfdc": "2022-10-19T13:33:03+00:00",
"name": "Monetate"
},
"Movable Ink": {
"all_names": [
"Movable Ink"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Movable Ink",
"uninstalled_at": "2023-11-08T16:41:28Z",
"uninstalled_at_sfdc": "2023-11-08T16:41:28+00:00"
},
"Narvar": {
"all_names": [
"Narvar"
],
"categories": [
"returns and exchanges"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Narvar",
"shopify_app": {
"all_names": [
"Narvar Return and Exchange",
"Narvar"
],
"categories": [
"returns and exchanges"
],
"installed_at": "2022-04-27T10:46:28Z",
"installed_at_sfdc": "2022-04-27T10:46:28+00:00",
"name": "Narvar Return and Exchange",
"platform": "shopify",
"platform_install_rank": 1533,
"technology": "Narvar"
}
},
"Noibu": {
"all_names": [
"Noibu"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Noibu"
},
"Ometria": {
"all_names": [
"Ometria"
],
"installed_at": "2026-03-25T17:40:14Z",
"installed_at_sfdc": "2026-03-25T17:40:14+00:00",
"name": "Ometria"
},
"Osano": {
"all_names": [
"Osano"
],
"installed_at": "2024-07-11T23:52:49Z",
"installed_at_sfdc": "2024-07-11T23:52:49+00:00",
"name": "Osano"
},
"PayPal": {
"all_names": [
"PayPal"
],
"installed_at": "2024-07-10T01:36:35Z",
"installed_at_sfdc": "2024-07-10T01:36:35+00:00",
"name": "PayPal",
"uninstalled_at": "2025-12-27T05:11:59Z",
"uninstalled_at_sfdc": "2025-12-27T05:11:59+00:00"
},
"PayPal Express Checkout": {
"all_names": [
"PayPal Express Checkout"
],
"installed_at": "2024-04-23T05:26:20Z",
"installed_at_sfdc": "2024-04-23T05:26:20+00:00",
"name": "PayPal Express Checkout"
},
"Pinterest Pixel": {
"all_names": [
"Pinterest Pixel"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Pinterest Pixel"
},
"PowerReviews": {
"all_names": [
"PowerReviews"
],
"installed_at": "2022-03-01T00:47:23Z",
"installed_at_sfdc": "2022-03-01T00:47:23+00:00",
"name": "PowerReviews"
},
"Refersion": {
"all_names": [
"Refersion"
],
"categories": [
"affiliate programs",
"marketing - other"
],
"installed_at": "2021-02-28T06:11:10Z",
"installed_at_sfdc": "2021-02-28T06:11:10+00:00",
"name": "Refersion",
"shopify_app": {
"all_names": [
"Refersion Affiliate Marketing",
"Refersion: Affiliate Marketing",
"Refersion"
],
"categories": [
"affiliate programs",
"marketing - other"
],
"installed_at": "2021-02-28T06:11:10Z",
"installed_at_sfdc": "2021-02-28T06:11:10+00:00",
"name": "Refersion Affiliate Marketing",
"platform": "shopify",
"platform_install_rank": 417,
"technology": "Refersion",
"uninstalled_at": "2022-08-27T01:32:54Z",
"uninstalled_at_sfdc": "2022-08-27T01:32:54+00:00"
},
"uninstalled_at": "2022-08-27T01:32:54Z",
"uninstalled_at_sfdc": "2022-08-27T01:32:54+00:00"
},
"SC Product Options": {
"all_names": [
"SC Product Options"
],
"categories": [
"product variants",
"custom file upload"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "SC Product Options",
"platform": "shopify",
"platform_install_rank": 129
},
"Salesforce Marketing Cloud": {
"all_names": [
"Salesforce Marketing Cloud"
],
"installed_at": "2022-08-19T11:50:44Z",
"installed_at_sfdc": "2022-08-19T11:50:44+00:00",
"name": "Salesforce Marketing Cloud",
"uninstalled_at": "2022-10-19T13:33:03Z",
"uninstalled_at_sfdc": "2022-10-19T13:33:03+00:00"
},
"Salsify": {
"all_names": [
"Salsify"
],
"installed_at": "2023-03-15T00:29:43Z",
"installed_at_sfdc": "2023-03-15T00:29:43+00:00",
"name": "Salsify",
"uninstalled_at": "2026-03-10T16:50:32Z",
"uninstalled_at_sfdc": "2026-03-10T16:50:32+00:00"
},
"Shop Pay": {
"all_names": [
"Shop Pay"
],
"installed_at": "2025-08-25T17:56:09Z",
"installed_at_sfdc": "2025-08-25T17:56:09+00:00",
"name": "Shop Pay"
},
"ShopRunner": {
"all_names": [
"ShopRunner"
],
"installed_at": "2021-09-03T06:53:08Z",
"installed_at_sfdc": "2021-09-03T06:53:08+00:00",
"name": "ShopRunner"
},
"Shopify Checkout Blocks": {
"all_names": [
"Shopify Checkout Blocks",
"Checkout Blocks"
],
"categories": [
"checkout - other",
"discounts"
],
"installed_at": "2024-10-23T23:32:55Z",
"installed_at_sfdc": "2024-10-23T23:32:55+00:00",
"name": "Shopify Checkout Blocks",
"platform": "shopify",
"platform_install_rank": 50
},
"Shopify Fulfillment Network": {
"all_names": [
"Shopify Fulfillment Network"
],
"categories": [
"outsourced fulfillment",
"fulfilling orders - other"
],
"installed_at": "2023-11-23T21:19:57Z",
"installed_at_sfdc": "2023-11-23T21:19:57+00:00",
"name": "Shopify Fulfillment Network",
"shopify_app": {
"all_names": [
"Shopify Fulfillment Network"
],
"categories": [
"outsourced fulfillment",
"fulfilling orders - other"
],
"installed_at": "2023-11-23T21:19:57Z",
"installed_at_sfdc": "2023-11-23T21:19:57+00:00",
"name": "Shopify Fulfillment Network",
"platform": "shopify",
"platform_install_rank": 2980,
"technology": "Shopify Fulfillment Network",
"uninstalled_at": "2023-12-13T18:42:12Z",
"uninstalled_at_sfdc": "2023-12-13T18:42:12+00:00"
},
"uninstalled_at": "2023-12-13T18:42:12Z",
"uninstalled_at_sfdc": "2023-12-13T18:42:12+00:00"
},
"Signifyd": {
"all_names": [
"Signifyd"
],
"categories": [
"fraud",
"returns and warranty - other"
],
"installed_at": "2020-12-05T03:23:10Z",
"installed_at_sfdc": "2020-12-05T03:23:10+00:00",
"name": "Signifyd",
"shopify_app": {
"all_names": [
"Signifyd",
"Signifyd‑Chargeback Protection"
],
"categories": [
"fraud",
"returns and warranty - other"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Signifyd",
"platform": "shopify",
"platform_install_rank": 462,
"technology": "Signifyd"
}
},
"Skai": {
"all_names": [
"Skai"
],
"installed_at": "2023-10-31T23:28:22Z",
"installed_at_sfdc": "2023-10-31T23:28:22+00:00",
"name": "Skai",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"Smart Wishlist": {
"all_names": [
"Smart Wishlist"
],
"categories": [
"wishlists"
],
"installed_at": "2020-10-21T18:12:23Z",
"installed_at_sfdc": "2020-10-21T18:12:23+00:00",
"name": "Smart Wishlist",
"platform": "shopify",
"platform_install_rank": 682
},
"Snap Pixel": {
"all_names": [
"Snap Pixel"
],
"installed_at": "2022-07-19T03:23:51Z",
"installed_at_sfdc": "2022-07-19T03:23:51+00:00",
"name": "Snap Pixel",
"uninstalled_at": "2022-07-29T13:38:17Z",
"uninstalled_at_sfdc": "2022-07-29T13:38:17+00:00"
},
"Steelhouse": {
"all_names": [
"Steelhouse"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Steelhouse",
"uninstalled_at": "2022-10-27T15:54:41Z",
"uninstalled_at_sfdc": "2022-10-27T15:54:41+00:00"
},
"SwellRewards": {
"all_names": [
"SwellRewards"
],
"categories": [
"loyalty and rewards"
],
"installed_at": "2020-11-10T09:49:59Z",
"installed_at_sfdc": "2020-11-10T09:49:59+00:00",
"name": "SwellRewards",
"shopify_app": {
"all_names": [
"Yotpo: Loyalty Rewards Program",
"Yotpo: Loyalty \u0026 Rewards",
"Yotpo Loyalty Rewards Referral",
"SwellRewards"
],
"categories": [
"loyalty and rewards"
],
"installed_at": "2020-08-26T11:32:52Z",
"installed_at_sfdc": "2020-08-26T11:32:52+00:00",
"name": "Yotpo: Loyalty Rewards Program",
"platform": "shopify",
"platform_install_rank": 180,
"technology": "SwellRewards",
"uninstalled_at": "2021-07-01T11:50:57Z",
"uninstalled_at_sfdc": "2021-07-01T11:50:57+00:00"
},
"uninstalled_at": "2021-07-01T11:50:57Z",
"uninstalled_at_sfdc": "2021-07-01T11:50:57+00:00"
},
"Tangiblee": {
"all_names": [
"Tangiblee"
],
"installed_at": "2024-09-02T15:30:30Z",
"installed_at_sfdc": "2024-09-02T15:30:30+00:00",
"name": "Tangiblee",
"uninstalled_at": "2025-01-23T00:41:53Z",
"uninstalled_at_sfdc": "2025-01-23T00:41:53+00:00"
},
"The Trade Desk": {
"all_names": [
"The Trade Desk"
],
"installed_at": "2024-05-01T04:18:33Z",
"installed_at_sfdc": "2024-05-01T04:18:33+00:00",
"name": "The Trade Desk",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"TikTok Pixel": {
"all_names": [
"TikTok Pixel"
],
"installed_at": "2022-07-19T03:23:51Z",
"installed_at_sfdc": "2022-07-19T03:23:51+00:00",
"name": "TikTok Pixel"
},
"UPS": {
"all_names": [
"UPS"
],
"installed_at": "2022-02-04T11:34:46Z",
"installed_at_sfdc": "2022-02-04T11:34:46+00:00",
"name": "UPS",
"uninstalled_at": "2024-08-22T08:49:51Z",
"uninstalled_at_sfdc": "2024-08-22T08:49:51+00:00"
},
"Vimeo": {
"all_names": [
"Vimeo"
],
"installed_at": "2022-06-03T01:53:12Z",
"installed_at_sfdc": "2022-06-03T01:53:12+00:00",
"name": "Vimeo",
"uninstalled_at": "2026-06-04T18:23:34Z",
"uninstalled_at_sfdc": "2026-06-04T18:23:34+00:00"
},
"Wunderkind": {
"all_names": [
"Wunderkind",
"BounceX"
],
"categories": [
"email marketing",
"sms marketing"
],
"installed_at": "2023-02-28T22:07:27Z",
"installed_at_sfdc": "2023-02-28T22:07:27+00:00",
"name": "Wunderkind",
"shopify_app": {
"all_names": [
"Wunderkind"
],
"categories": [
"email marketing",
"sms marketing"
],
"installed_at": "2026-01-12T02:19:39Z",
"installed_at_sfdc": "2026-01-12T02:19:39+00:00",
"name": "Wunderkind",
"platform": "shopify",
"platform_install_rank": 2523
}
},
"Yotpo": {
"all_names": [
"Yotpo"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Yotpo",
"uninstalled_at": "2022-03-01T00:47:23Z",
"uninstalled_at_sfdc": "2022-03-01T00:47:23+00:00"
},
"YouTube Player": {
"all_names": [
"YouTube Player"
],
"installed_at": "2023-11-23T21:19:57Z",
"installed_at_sfdc": "2023-11-23T21:19:57+00:00",
"name": "YouTube Player",
"uninstalled_at": "2024-01-04T01:41:23Z",
"uninstalled_at_sfdc": "2024-01-04T01:41:23+00:00"
},
"Zendesk": {
"all_names": [
"Zendesk"
],
"categories": [
"helpdesk"
],
"installed_at": "2022-10-12T07:50:17Z",
"installed_at_sfdc": "2022-10-12T07:50:17+00:00",
"name": "Zendesk",
"shopify_app": {
"all_names": [
"Zendesk"
],
"categories": [
"helpdesk"
],
"installed_at": "2022-10-12T07:50:17Z",
"installed_at_sfdc": "2022-10-12T07:50:17+00:00",
"name": "Zendesk",
"platform": "shopify",
"platform_install_rank": 149,
"technology": "Zendesk",
"uninstalled_at": "2025-11-24T20:55:28Z",
"uninstalled_at_sfdc": "2025-11-24T20:55:28+00:00"
},
"uninstalled_at": "2025-11-24T20:55:28Z",
"uninstalled_at_sfdc": "2025-11-24T20:55:28+00:00"
},
"reCAPTCHA": {
"all_names": [
"reCAPTCHA"
],
"installed_at": "2023-10-31T23:28:22Z",
"installed_at_sfdc": "2023-10-31T23:28:22+00:00",
"name": "reCAPTCHA",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
}
},
"app_details": {
"1.checkout-blocks": {
"all_names": [
"Shopify Checkout Blocks",
"Checkout Blocks"
],
"categories": [
"checkout - other",
"discounts"
],
"installed_at": "2024-10-23T23:32:55Z",
"installed_at_sfdc": "2024-10-23T23:32:55+00:00",
"name": "Shopify Checkout Blocks",
"platform": "shopify",
"platform_install_rank": 50
},
"1.customer-pricing": {
"all_names": [
"Custom Pricing: Wholesale B2B",
"Bold Custom Pricing: Wholesale",
"BOLD Custom Pricing: Wholesale"
],
"categories": [
"wholesale",
"discounts"
],
"installed_at": "2022-03-30T12:41:57Z",
"installed_at_sfdc": "2022-03-30T12:41:57+00:00",
"name": "Custom Pricing: Wholesale B2B",
"platform": "shopify",
"platform_install_rank": 492,
"uninstalled_at": "2024-07-11T15:48:26Z",
"uninstalled_at_sfdc": "2024-07-11T15:48:26+00:00"
},
"1.external-bold-cashier": {
"all_names": [
"Bold Cashier"
],
"categories": [],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Bold Cashier",
"platform": "shopify",
"platform_install_rank": 3316,
"uninstalled_at": "2024-08-22T08:49:51Z",
"uninstalled_at_sfdc": "2024-08-22T08:49:51+00:00"
},
"1.gleam": {
"all_names": [
"Gleam Competitions"
],
"categories": [
"giveaways and contests",
"pop-ups"
],
"installed_at": "2026-01-20T01:58:43Z",
"installed_at_sfdc": "2026-01-20T01:58:43+00:00",
"name": "Gleam Competitions",
"platform": "shopify",
"platform_install_rank": 1528
},
"1.influencer-marketing-for-shopify-by-grin": {
"all_names": [
"GRIN Influencer Marketing",
"GRIN"
],
"categories": [
"affiliate programs"
],
"installed_at": "2025-05-12T21:11:21Z",
"installed_at_sfdc": "2025-05-12T21:11:21+00:00",
"name": "GRIN Influencer Marketing",
"platform": "shopify",
"platform_install_rank": 895,
"technology": "GRIN",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"1.klevu-smart-search": {
"all_names": [
"Klevu ‑ AI Search \u0026 Discovery",
"Klevu"
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"installed_at": "2025-06-24T20:24:56Z",
"installed_at_sfdc": "2025-06-24T20:24:56+00:00",
"name": "Klevu ‑ AI Search \u0026 Discovery",
"platform": "shopify",
"platform_install_rank": 1417,
"technology": "Klevu"
},
"1.lucky-orange": {
"all_names": [
"Lucky Orange Heatmaps \u0026 Replay"
],
"categories": [
"analytics",
"site optimization - other"
],
"installed_at": "2023-05-11T03:45:27Z",
"installed_at_sfdc": "2023-05-11T03:45:27+00:00",
"name": "Lucky Orange Heatmaps \u0026 Replay",
"platform": "shopify",
"platform_install_rank": 73,
"uninstalled_at": "2024-03-05T13:59:04Z",
"uninstalled_at_sfdc": "2024-03-05T13:59:04+00:00"
},
"1.microsoft-clarity": {
"all_names": [
"Microsoft Clarity: AI Insights"
],
"categories": [
"analytics",
"site optimization - other"
],
"installed_at": "2026-01-12T02:19:39Z",
"installed_at_sfdc": "2026-01-12T02:19:39+00:00",
"name": "Microsoft Clarity: AI Insights",
"platform": "shopify",
"platform_install_rank": 15
},
"1.narvar-returns": {
"all_names": [
"Narvar Return and Exchange",
"Narvar"
],
"categories": [
"returns and exchanges"
],
"installed_at": "2022-04-27T10:46:28Z",
"installed_at_sfdc": "2022-04-27T10:46:28+00:00",
"name": "Narvar Return and Exchange",
"platform": "shopify",
"platform_install_rank": 1533,
"technology": "Narvar"
},
"1.pasilobus-confetti": {
"all_names": [
"Confetti",
"Confetti ‑ Pasilobus",
"Pasilobus Confetti",
"Confetti ‑ Pasilobus.",
"pasilobus: Confetti"
],
"categories": [
"design elements - other"
],
"installed_at": "2026-04-09T16:10:12Z",
"installed_at_sfdc": "2026-04-09T16:10:12+00:00",
"name": "Confetti",
"platform": "shopify",
"platform_install_rank": 2112,
"uninstalled_at": "2026-04-30T17:07:54Z",
"uninstalled_at_sfdc": "2026-04-30T17:07:54+00:00"
},
"1.product-bundles": {
"all_names": [
"Bold Bundles ‑ Product Bundles",
"BOLD Bundles ‑ Product Bundles"
],
"categories": [
"product bundles",
"upsell and cross-sell"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Bold Bundles ‑ Product Bundles",
"platform": "shopify",
"platform_install_rank": 590,
"uninstalled_at": "2020-10-21T18:12:23Z",
"uninstalled_at_sfdc": "2020-10-21T18:12:23+00:00"
},
"1.product-options": {
"all_names": [
"SC Product Options"
],
"categories": [
"product variants",
"custom file upload"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "SC Product Options",
"platform": "shopify",
"platform_install_rank": 129
},
"1.product-upsell": {
"all_names": [
"Bold AI Upsell \u0026 Cross‑Sell",
"BOLD Upsell: Upsell Everywhere",
"BOLD Upsell AI Powered Upsells",
"BOLD Upsell AI Smart Upselling",
"BOLD AI Upsell \u0026 Cross‑Sell"
],
"categories": [
"upsell and cross-sell",
"cart customization"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Bold AI Upsell \u0026 Cross‑Sell",
"platform": "shopify",
"platform_install_rank": 230,
"uninstalled_at": "2020-09-12T15:57:11Z",
"uninstalled_at_sfdc": "2020-09-12T15:57:11+00:00"
},
"1.refersion": {
"all_names": [
"Refersion Affiliate Marketing",
"Refersion: Affiliate Marketing",
"Refersion"
],
"categories": [
"affiliate programs",
"marketing - other"
],
"installed_at": "2021-02-28T06:11:10Z",
"installed_at_sfdc": "2021-02-28T06:11:10+00:00",
"name": "Refersion Affiliate Marketing",
"platform": "shopify",
"platform_install_rank": 417,
"technology": "Refersion",
"uninstalled_at": "2022-08-27T01:32:54Z",
"uninstalled_at_sfdc": "2022-08-27T01:32:54+00:00"
},
"1.shopify-fulfillment-network": {
"all_names": [
"Shopify Fulfillment Network"
],
"categories": [
"outsourced fulfillment",
"fulfilling orders - other"
],
"installed_at": "2023-11-23T21:19:57Z",
"installed_at_sfdc": "2023-11-23T21:19:57+00:00",
"name": "Shopify Fulfillment Network",
"platform": "shopify",
"platform_install_rank": 2980,
"technology": "Shopify Fulfillment Network",
"uninstalled_at": "2023-12-13T18:42:12Z",
"uninstalled_at_sfdc": "2023-12-13T18:42:12+00:00"
},
"1.signifyd": {
"all_names": [
"Signifyd",
"Signifyd‑Chargeback Protection"
],
"categories": [
"fraud",
"returns and warranty - other"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Signifyd",
"platform": "shopify",
"platform_install_rank": 462,
"technology": "Signifyd"
},
"1.smart-wishlist": {
"all_names": [
"Smart Wishlist"
],
"categories": [
"wishlists"
],
"installed_at": "2020-10-21T18:12:23Z",
"installed_at_sfdc": "2020-10-21T18:12:23+00:00",
"name": "Smart Wishlist",
"platform": "shopify",
"platform_install_rank": 682
},
"1.swell": {
"all_names": [
"Yotpo: Loyalty Rewards Program",
"Yotpo: Loyalty \u0026 Rewards",
"Yotpo Loyalty Rewards Referral",
"SwellRewards"
],
"categories": [
"loyalty and rewards"
],
"installed_at": "2020-08-26T11:32:52Z",
"installed_at_sfdc": "2020-08-26T11:32:52+00:00",
"name": "Yotpo: Loyalty Rewards Program",
"platform": "shopify",
"platform_install_rank": 180,
"technology": "SwellRewards",
"uninstalled_at": "2021-07-01T11:50:57Z",
"uninstalled_at_sfdc": "2021-07-01T11:50:57+00:00"
},
"1.wunderkind": {
"all_names": [
"Wunderkind"
],
"categories": [
"email marketing",
"sms marketing"
],
"installed_at": "2026-01-12T02:19:39Z",
"installed_at_sfdc": "2026-01-12T02:19:39+00:00",
"name": "Wunderkind",
"platform": "shopify",
"platform_install_rank": 2523
},
"1.zendesk": {
"all_names": [
"Zendesk"
],
"categories": [
"helpdesk"
],
"installed_at": "2022-10-12T07:50:17Z",
"installed_at_sfdc": "2022-10-12T07:50:17+00:00",
"name": "Zendesk",
"platform": "shopify",
"platform_install_rank": 149,
"technology": "Zendesk",
"uninstalled_at": "2025-11-24T20:55:28Z",
"uninstalled_at_sfdc": "2025-11-24T20:55:28+00:00"
}
},
"avg_price": 5572,
"avg_price_usd": 5572,
"avg_weight": 1345,
"brand_advocate_page_url": "https://verabradley.com/pages/become-an-affiliate-partner",
"brands_page_url": "",
"categories": [
"/Apparel/Clothing Accessories"
],
"city": "Roanoke",
"cluster_domains": [
"verabradley.com",
"international.verabradley.com"
],
"combined_average_rating": 0,
"combined_followers": 328000,
"combined_reviews": 0,
"contact_info": [
{
"followers": 10300,
"type": "youtube",
"url": "https://www.youtube.com/@verabradley",
"value": "verabradley"
},
{
"followers": 106500,
"type": "tiktok",
"url": "https://www.tiktok.com/@verabradley",
"value": "@verabradley"
},
{
"followers": 64200,
"type": "twitter",
"url": "https://twitter.com/verabradley",
"value": "verabradley"
},
{
"type": "phone",
"value": "+1 754-328-6970"
},
{
"followers": 0,
"type": "linkedin",
"url": "https://www.linkedin.com/company/vera-bradley",
"value": "vera-bradley"
},
{
"followers": 0,
"type": "instagram",
"url": "https://www.instagram.com/verabradley",
"value": "verabradley"
},
{
"followers": 147000,
"type": "pinterest",
"url": "https://www.pinterest.com/verabradley",
"value": "verabradley"
},
{
"type": "email",
"value": "verabradley@t.verabradleyemail.com"
},
{
"followers": 0,
"type": "facebook",
"url": "https://www.facebook.com/verabradley",
"value": "verabradley"
}
],
"contact_page_url": "https://verabradley.com/pages/contact-us",
"copyright": "Vera Bradley Sales, LLC",
"country_code": "US",
"currency_code": "USD",
"estimated_page_views": 22740214,
"estimated_sales": 2650505076,
"estimated_visits": 6146003,
"faq_page_url": "",
"features": [
"Career Page",
"Returns Page",
"Shopify Online Store 2.0",
"Cryptocurrency Messaging",
"Gift Messaging",
"New Shopify Checkout (2022)",
"Accepts Gift Cards",
"Contact Page",
"Brand Advocate Page",
"Has Blog",
"Public Company"
],
"financing_page_url": "",
"id": 11120768,
"klaviyo_features": [],
"language_code": "en",
"localization_count": 0,
"localizations": null,
"max_price": 84500,
"merchant_name": "Vera Bradley",
"min_price": 100,
"name": "verabradley.com",
"pinterest_followers": 147000,
"plan": "Shopify Plus",
"platform": "shopify",
"platform_rank": 8,
"postal_code": "46783",
"product_count": 1823,
"products_created_30": 1,
"products_created_365": 725,
"products_created_90": 169,
"public_earnings_monthly": 2829600000,
"public_earnings_yearly": 26965100000,
"rank": 215,
"retailer_page_url": "",
"returns_page_url": "https://returns.narvar.com/verabradley/returns",
"ships_to_countries": [
"US"
],
"shop_id": "33465794604",
"shopify_app_names": [
"Shopify Checkout Blocks",
"Gleam Competitions",
"Klevu ‑ AI Search \u0026 Discovery",
"Microsoft Clarity: AI Insights",
"Narvar Return and Exchange",
"SC Product Options",
"Signifyd",
"Smart Wishlist",
"Wunderkind"
],
"shopify_app_tokens": [
"checkout-blocks",
"gleam",
"klevu-smart-search",
"microsoft-clarity",
"narvar-returns",
"product-options",
"signifyd",
"smart-wishlist",
"wunderkind"
],
"state": "Active",
"store_locator_page_url": "",
"technologies": [
"Afterpay",
"Apple Pay",
"Arrive",
"Bing Ads",
"Bold Commerce Platform",
"Cloudflare",
"Cloudflare CDN",
"Google Ads Pixel",
"Google Adsense",
"Google Pay",
"Google Tag Manager",
"Klevu",
"LinkShare",
"Microsoft Clarity",
"Mimecast Email Security",
"Monetate",
"Narvar",
"Noibu",
"Ometria",
"Osano",
"PayPal Express Checkout",
"Pinterest Pixel",
"PowerReviews",
"Shop Pay",
"ShopRunner",
"Signifyd",
"TikTok Pixel",
"Wunderkind"
],
"technology_details": {
"4Cite": {
"all_names": [
"4Cite"
],
"installed_at": "2022-08-19T11:50:44Z",
"installed_at_sfdc": "2022-08-19T11:50:44+00:00",
"name": "4Cite",
"uninstalled_at": "2023-05-11T03:45:27Z",
"uninstalled_at_sfdc": "2023-05-11T03:45:27+00:00"
},
"Adyen Online Payments": {
"all_names": [
"Adyen Online Payments"
],
"installed_at": "2026-04-20T19:27:12Z",
"installed_at_sfdc": "2026-04-20T19:27:12+00:00",
"name": "Adyen Online Payments",
"uninstalled_at": "2026-05-21T22:25:58Z",
"uninstalled_at_sfdc": "2026-05-21T22:25:58+00:00"
},
"Afterpay": {
"all_names": [
"Afterpay"
],
"installed_at": "2021-03-11T04:17:14Z",
"installed_at_sfdc": "2021-03-11T04:17:14+00:00",
"name": "Afterpay"
},
"Apple Pay": {
"all_names": [
"Apple Pay"
],
"installed_at": "2026-05-26T18:01:00Z",
"installed_at_sfdc": "2026-05-26T18:01:00+00:00",
"name": "Apple Pay"
},
"Arrive": {
"all_names": [
"Arrive"
],
"installed_at": "2024-02-16T02:04:28Z",
"installed_at_sfdc": "2024-02-16T02:04:28+00:00",
"name": "Arrive"
},
"Bambuser": {
"all_names": [
"Bambuser"
],
"installed_at": "2022-04-27T10:46:28Z",
"installed_at_sfdc": "2022-04-27T10:46:28+00:00",
"name": "Bambuser",
"uninstalled_at": "2023-12-27T11:13:04Z",
"uninstalled_at_sfdc": "2023-12-27T11:13:04+00:00"
},
"Bing Ads": {
"all_names": [
"Bing Ads"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Bing Ads"
},
"Bold Commerce Platform": {
"all_names": [
"Bold Commerce Platform"
],
"installed_at": "2023-08-18T18:02:00Z",
"installed_at_sfdc": "2023-08-18T18:02:00+00:00",
"name": "Bold Commerce Platform"
},
"Cloudflare": {
"all_names": [
"Cloudflare"
],
"installed_at": "2023-10-31T23:28:22Z",
"installed_at_sfdc": "2023-10-31T23:28:22+00:00",
"name": "Cloudflare"
},
"Cloudflare CDN": {
"all_names": [
"Cloudflare CDN"
],
"installed_at": "2021-06-08T15:50:30Z",
"installed_at_sfdc": "2021-06-08T15:50:30+00:00",
"name": "Cloudflare CDN"
},
"Criteo": {
"all_names": [
"Criteo"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Criteo",
"uninstalled_at": "2023-01-12T14:45:57Z",
"uninstalled_at_sfdc": "2023-01-12T14:45:57+00:00"
},
"Facebook Pixel": {
"all_names": [
"Facebook Pixel"
],
"installed_at": "2022-07-19T03:23:51Z",
"installed_at_sfdc": "2022-07-19T03:23:51+00:00",
"name": "Facebook Pixel",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"GRIN": {
"all_names": [
"GRIN"
],
"categories": [
"affiliate programs"
],
"installed_at": "2022-08-02T04:30:05Z",
"installed_at_sfdc": "2022-08-02T04:30:05+00:00",
"name": "GRIN",
"shopify_app": {
"all_names": [
"GRIN Influencer Marketing",
"GRIN"
],
"categories": [
"affiliate programs"
],
"installed_at": "2025-05-12T21:11:21Z",
"installed_at_sfdc": "2025-05-12T21:11:21+00:00",
"name": "GRIN Influencer Marketing",
"platform": "shopify",
"platform_install_rank": 895,
"technology": "GRIN",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"Global-e": {
"all_names": [
"Global-e"
],
"installed_at": "2021-03-27T11:23:07Z",
"installed_at_sfdc": "2021-03-27T11:23:07+00:00",
"name": "Global-e",
"uninstalled_at": "2021-11-29T16:32:53Z",
"uninstalled_at_sfdc": "2021-11-29T16:32:53+00:00"
},
"Google Ads Pixel": {
"all_names": [
"Google Ads Pixel"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Google Ads Pixel"
},
"Google Adsense": {
"all_names": [
"Google Adsense"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Google Adsense"
},
"Google Analytics": {
"all_names": [
"Google Analytics"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Google Analytics",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"Google Analytics 4": {
"all_names": [
"Google Analytics 4"
],
"installed_at": "2024-09-16T20:37:01Z",
"installed_at_sfdc": "2024-09-16T20:37:01+00:00",
"name": "Google Analytics 4",
"uninstalled_at": "2025-05-12T22:30:10Z",
"uninstalled_at_sfdc": "2025-05-12T22:30:10+00:00"
},
"Google Analytics Enhanced Ecommerce": {
"all_names": [
"Google Analytics Enhanced Ecommerce"
],
"installed_at": "2022-07-19T03:23:51Z",
"installed_at_sfdc": "2022-07-19T03:23:51+00:00",
"name": "Google Analytics Enhanced Ecommerce",
"uninstalled_at": "2022-07-29T13:38:17Z",
"uninstalled_at_sfdc": "2022-07-29T13:38:17+00:00"
},
"Google Pay": {
"all_names": [
"Google Pay"
],
"installed_at": "2026-05-26T18:01:00Z",
"installed_at_sfdc": "2026-05-26T18:01:00+00:00",
"name": "Google Pay"
},
"Google Tag Manager": {
"all_names": [
"Google Tag Manager"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Google Tag Manager"
},
"Klevu": {
"all_names": [
"Klevu"
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"installed_at": "2025-06-24T20:24:56Z",
"installed_at_sfdc": "2025-06-24T20:24:56+00:00",
"name": "Klevu",
"shopify_app": {
"all_names": [
"Klevu ‑ AI Search \u0026 Discovery",
"Klevu"
],
"categories": [
"search and filters",
"upsell and cross-sell"
],
"installed_at": "2025-06-24T20:24:56Z",
"installed_at_sfdc": "2025-06-24T20:24:56+00:00",
"name": "Klevu ‑ AI Search \u0026 Discovery",
"platform": "shopify",
"platform_install_rank": 1417,
"technology": "Klevu"
}
},
"LinkShare": {
"all_names": [
"LinkShare"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "LinkShare"
},
"Loop Commerce": {
"all_names": [
"Loop Commerce"
],
"installed_at": "2020-08-26T11:32:52Z",
"installed_at_sfdc": "2020-08-26T11:32:52+00:00",
"name": "Loop Commerce",
"uninstalled_at": "2023-01-04T15:19:24Z",
"uninstalled_at_sfdc": "2023-01-04T15:19:24+00:00"
},
"Microsoft Clarity": {
"all_names": [
"Microsoft Clarity"
],
"installed_at": "2025-10-03T01:18:54Z",
"installed_at_sfdc": "2025-10-03T01:18:54+00:00",
"name": "Microsoft Clarity"
},
"Mimecast Email Security": {
"all_names": [
"Mimecast Email Security"
],
"installed_at": "2026-05-05T17:06:58Z",
"installed_at_sfdc": "2026-05-05T17:06:58+00:00",
"name": "Mimecast Email Security"
},
"Monetate": {
"all_names": [
"Monetate"
],
"installed_at": "2022-10-19T13:33:03Z",
"installed_at_sfdc": "2022-10-19T13:33:03+00:00",
"name": "Monetate"
},
"Movable Ink": {
"all_names": [
"Movable Ink"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Movable Ink",
"uninstalled_at": "2023-11-08T16:41:28Z",
"uninstalled_at_sfdc": "2023-11-08T16:41:28+00:00"
},
"Narvar": {
"all_names": [
"Narvar"
],
"categories": [
"returns and exchanges"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Narvar",
"shopify_app": {
"all_names": [
"Narvar Return and Exchange",
"Narvar"
],
"categories": [
"returns and exchanges"
],
"installed_at": "2022-04-27T10:46:28Z",
"installed_at_sfdc": "2022-04-27T10:46:28+00:00",
"name": "Narvar Return and Exchange",
"platform": "shopify",
"platform_install_rank": 1533,
"technology": "Narvar"
}
},
"Noibu": {
"all_names": [
"Noibu"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Noibu"
},
"Ometria": {
"all_names": [
"Ometria"
],
"installed_at": "2026-03-25T17:40:14Z",
"installed_at_sfdc": "2026-03-25T17:40:14+00:00",
"name": "Ometria"
},
"Osano": {
"all_names": [
"Osano"
],
"installed_at": "2024-07-11T23:52:49Z",
"installed_at_sfdc": "2024-07-11T23:52:49+00:00",
"name": "Osano"
},
"PayPal": {
"all_names": [
"PayPal"
],
"installed_at": "2024-07-10T01:36:35Z",
"installed_at_sfdc": "2024-07-10T01:36:35+00:00",
"name": "PayPal",
"uninstalled_at": "2025-12-27T05:11:59Z",
"uninstalled_at_sfdc": "2025-12-27T05:11:59+00:00"
},
"PayPal Express Checkout": {
"all_names": [
"PayPal Express Checkout"
],
"installed_at": "2024-04-23T05:26:20Z",
"installed_at_sfdc": "2024-04-23T05:26:20+00:00",
"name": "PayPal Express Checkout"
},
"Pinterest Pixel": {
"all_names": [
"Pinterest Pixel"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Pinterest Pixel"
},
"PowerReviews": {
"all_names": [
"PowerReviews"
],
"installed_at": "2022-03-01T00:47:23Z",
"installed_at_sfdc": "2022-03-01T00:47:23+00:00",
"name": "PowerReviews"
},
"Refersion": {
"all_names": [
"Refersion"
],
"categories": [
"affiliate programs",
"marketing - other"
],
"installed_at": "2021-02-28T06:11:10Z",
"installed_at_sfdc": "2021-02-28T06:11:10+00:00",
"name": "Refersion",
"shopify_app": {
"all_names": [
"Refersion Affiliate Marketing",
"Refersion: Affiliate Marketing",
"Refersion"
],
"categories": [
"affiliate programs",
"marketing - other"
],
"installed_at": "2021-02-28T06:11:10Z",
"installed_at_sfdc": "2021-02-28T06:11:10+00:00",
"name": "Refersion Affiliate Marketing",
"platform": "shopify",
"platform_install_rank": 417,
"technology": "Refersion",
"uninstalled_at": "2022-08-27T01:32:54Z",
"uninstalled_at_sfdc": "2022-08-27T01:32:54+00:00"
},
"uninstalled_at": "2022-08-27T01:32:54Z",
"uninstalled_at_sfdc": "2022-08-27T01:32:54+00:00"
},
"Salesforce Marketing Cloud": {
"all_names": [
"Salesforce Marketing Cloud"
],
"installed_at": "2022-08-19T11:50:44Z",
"installed_at_sfdc": "2022-08-19T11:50:44+00:00",
"name": "Salesforce Marketing Cloud",
"uninstalled_at": "2022-10-19T13:33:03Z",
"uninstalled_at_sfdc": "2022-10-19T13:33:03+00:00"
},
"Salsify": {
"all_names": [
"Salsify"
],
"installed_at": "2023-03-15T00:29:43Z",
"installed_at_sfdc": "2023-03-15T00:29:43+00:00",
"name": "Salsify",
"uninstalled_at": "2026-03-10T16:50:32Z",
"uninstalled_at_sfdc": "2026-03-10T16:50:32+00:00"
},
"Shop Pay": {
"all_names": [
"Shop Pay"
],
"installed_at": "2025-08-25T17:56:09Z",
"installed_at_sfdc": "2025-08-25T17:56:09+00:00",
"name": "Shop Pay"
},
"ShopRunner": {
"all_names": [
"ShopRunner"
],
"installed_at": "2021-09-03T06:53:08Z",
"installed_at_sfdc": "2021-09-03T06:53:08+00:00",
"name": "ShopRunner"
},
"Shopify Fulfillment Network": {
"all_names": [
"Shopify Fulfillment Network"
],
"categories": [
"outsourced fulfillment",
"fulfilling orders - other"
],
"installed_at": "2023-11-23T21:19:57Z",
"installed_at_sfdc": "2023-11-23T21:19:57+00:00",
"name": "Shopify Fulfillment Network",
"shopify_app": {
"all_names": [
"Shopify Fulfillment Network"
],
"categories": [
"outsourced fulfillment",
"fulfilling orders - other"
],
"installed_at": "2023-11-23T21:19:57Z",
"installed_at_sfdc": "2023-11-23T21:19:57+00:00",
"name": "Shopify Fulfillment Network",
"platform": "shopify",
"platform_install_rank": 2980,
"technology": "Shopify Fulfillment Network",
"uninstalled_at": "2023-12-13T18:42:12Z",
"uninstalled_at_sfdc": "2023-12-13T18:42:12+00:00"
},
"uninstalled_at": "2023-12-13T18:42:12Z",
"uninstalled_at_sfdc": "2023-12-13T18:42:12+00:00"
},
"Signifyd": {
"all_names": [
"Signifyd"
],
"categories": [
"fraud",
"returns and warranty - other"
],
"installed_at": "2020-12-05T03:23:10Z",
"installed_at_sfdc": "2020-12-05T03:23:10+00:00",
"name": "Signifyd",
"shopify_app": {
"all_names": [
"Signifyd",
"Signifyd‑Chargeback Protection"
],
"categories": [
"fraud",
"returns and warranty - other"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Signifyd",
"platform": "shopify",
"platform_install_rank": 462,
"technology": "Signifyd"
}
},
"Skai": {
"all_names": [
"Skai"
],
"installed_at": "2023-10-31T23:28:22Z",
"installed_at_sfdc": "2023-10-31T23:28:22+00:00",
"name": "Skai",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"Snap Pixel": {
"all_names": [
"Snap Pixel"
],
"installed_at": "2022-07-19T03:23:51Z",
"installed_at_sfdc": "2022-07-19T03:23:51+00:00",
"name": "Snap Pixel",
"uninstalled_at": "2022-07-29T13:38:17Z",
"uninstalled_at_sfdc": "2022-07-29T13:38:17+00:00"
},
"Steelhouse": {
"all_names": [
"Steelhouse"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Steelhouse",
"uninstalled_at": "2022-10-27T15:54:41Z",
"uninstalled_at_sfdc": "2022-10-27T15:54:41+00:00"
},
"SwellRewards": {
"all_names": [
"SwellRewards"
],
"categories": [
"loyalty and rewards"
],
"installed_at": "2020-11-10T09:49:59Z",
"installed_at_sfdc": "2020-11-10T09:49:59+00:00",
"name": "SwellRewards",
"shopify_app": {
"all_names": [
"Yotpo: Loyalty Rewards Program",
"Yotpo: Loyalty \u0026 Rewards",
"Yotpo Loyalty Rewards Referral",
"SwellRewards"
],
"categories": [
"loyalty and rewards"
],
"installed_at": "2020-08-26T11:32:52Z",
"installed_at_sfdc": "2020-08-26T11:32:52+00:00",
"name": "Yotpo: Loyalty Rewards Program",
"platform": "shopify",
"platform_install_rank": 180,
"technology": "SwellRewards",
"uninstalled_at": "2021-07-01T11:50:57Z",
"uninstalled_at_sfdc": "2021-07-01T11:50:57+00:00"
},
"uninstalled_at": "2021-07-01T11:50:57Z",
"uninstalled_at_sfdc": "2021-07-01T11:50:57+00:00"
},
"Tangiblee": {
"all_names": [
"Tangiblee"
],
"installed_at": "2024-09-02T15:30:30Z",
"installed_at_sfdc": "2024-09-02T15:30:30+00:00",
"name": "Tangiblee",
"uninstalled_at": "2025-01-23T00:41:53Z",
"uninstalled_at_sfdc": "2025-01-23T00:41:53+00:00"
},
"The Trade Desk": {
"all_names": [
"The Trade Desk"
],
"installed_at": "2024-05-01T04:18:33Z",
"installed_at_sfdc": "2024-05-01T04:18:33+00:00",
"name": "The Trade Desk",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
},
"TikTok Pixel": {
"all_names": [
"TikTok Pixel"
],
"installed_at": "2022-07-19T03:23:51Z",
"installed_at_sfdc": "2022-07-19T03:23:51+00:00",
"name": "TikTok Pixel"
},
"UPS": {
"all_names": [
"UPS"
],
"installed_at": "2022-02-04T11:34:46Z",
"installed_at_sfdc": "2022-02-04T11:34:46+00:00",
"name": "UPS",
"uninstalled_at": "2024-08-22T08:49:51Z",
"uninstalled_at_sfdc": "2024-08-22T08:49:51+00:00"
},
"Vimeo": {
"all_names": [
"Vimeo"
],
"installed_at": "2022-06-03T01:53:12Z",
"installed_at_sfdc": "2022-06-03T01:53:12+00:00",
"name": "Vimeo",
"uninstalled_at": "2026-06-04T18:23:34Z",
"uninstalled_at_sfdc": "2026-06-04T18:23:34+00:00"
},
"Wunderkind": {
"all_names": [
"Wunderkind",
"BounceX"
],
"installed_at": "2022-03-09T09:19:19Z",
"installed_at_sfdc": "2022-03-09T09:19:19+00:00",
"name": "Wunderkind",
"uninstalled_at": "2023-02-28T22:07:27Z",
"uninstalled_at_sfdc": "2023-02-28T22:07:27+00:00"
},
"Yotpo": {
"all_names": [
"Yotpo"
],
"installed_at": "2020-08-06T02:57:45Z",
"installed_at_sfdc": "2020-08-06T02:57:45+00:00",
"name": "Yotpo",
"uninstalled_at": "2022-03-01T00:47:23Z",
"uninstalled_at_sfdc": "2022-03-01T00:47:23+00:00"
},
"YouTube Player": {
"all_names": [
"YouTube Player"
],
"installed_at": "2023-11-23T21:19:57Z",
"installed_at_sfdc": "2023-11-23T21:19:57+00:00",
"name": "YouTube Player",
"uninstalled_at": "2024-01-04T01:41:23Z",
"uninstalled_at_sfdc": "2024-01-04T01:41:23+00:00"
},
"Zendesk": {
"all_names": [
"Zendesk"
],
"categories": [
"helpdesk"
],
"installed_at": "2022-10-12T07:50:17Z",
"installed_at_sfdc": "2022-10-12T07:50:17+00:00",
"name": "Zendesk",
"shopify_app": {
"all_names": [
"Zendesk"
],
"categories": [
"helpdesk"
],
"installed_at": "2022-10-12T07:50:17Z",
"installed_at_sfdc": "2022-10-12T07:50:17+00:00",
"name": "Zendesk",
"platform": "shopify",
"platform_install_rank": 149,
"technology": "Zendesk",
"uninstalled_at": "2025-11-24T20:55:28Z",
"uninstalled_at_sfdc": "2025-11-24T20:55:28+00:00"
},
"uninstalled_at": "2025-11-24T20:55:28Z",
"uninstalled_at_sfdc": "2025-11-24T20:55:28+00:00"
},
"reCAPTCHA": {
"all_names": [
"reCAPTCHA"
],
"installed_at": "2023-10-31T23:28:22Z",
"installed_at_sfdc": "2023-10-31T23:28:22+00:00",
"name": "reCAPTCHA",
"uninstalled_at": "2025-06-03T01:05:46Z",
"uninstalled_at_sfdc": "2025-06-03T01:05:46+00:00"
}
},
"theme_name": "x",
"theme_vendor": "Unknown",
"theme_version": "2.0.0",
"tiktok_followers": 106500,
"tracking_page_url": "",
"twitter_followers": 64200,
"warranty_page_url": "",
"youtube_followers": 10300
},
"now": "2026-06-08T18:52:18.703239422Z"
}
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).
Store Leads