Serializer - Product Tracking
  • Getting started
    • Introduction
    • Enable product tracking
    • Add serial numbers and other data to orders
      • Serialize items from the Admin Order page
      • Serialize items via the app (legacy)
    • Add serial numbers to the Shopify POS cart
    • Track items
    • Share item information with customers
      • Shopify notifications
      • Customer's order page
      • Order printer
      • Dynamically display items in your online store
    • Track custom item information
    • Development API reference
      • Metafields
      • App Proxy REST API
      • Order printer's Liquid variables and filters
  • Troubleshooting
    • FAQs
    • Known issues & workarounds
      • Handle external order edits
  • Legal
    • Terms of Service
    • Privacy Policy
    • Sub-processors
Powered by GitBook
On this page
  1. Getting started
  2. Share item information with customers

Dynamically display items in your online store

Allow customers to look up unique item information on the storefront via the app proxy.

PreviousOrder printerNextTrack custom item information

Last updated 4 days ago

The app provides a secure API, which can be used to extend your online store with item lookup capability, similar to the search functionality on the "" page within the admin app. This may be useful to merchants wanting their customers to verify the authenticity of their purchased items.

To implement item search functionality on the storefront, basic knowledge of Javascript and Shopify Liquid programming languages is required. See the for more details.

write_app_proxy access scope

In order to provide the items lookup capability, the app needs the write_app_proxy access scope. Unfortunately, the access scope is required even if your store doesn't rely on the app proxy.

Please note that even though the app requires access to "Edit your Online Store", it doesn't automatically make any changes to your storefront's content, even if your online store uses the app proxy. The API only returns data in JSON format and not Liquid. However, you can implement custom solutions, which would present such data to your customers.

According to , "App proxies support , Shopify's template language. An app proxy response that contains Liquid will be rendered with store data into HTML like it was part of the store's theme."

Shopify's documentation
Liquid
Tracked items
development API reference