Hello! I am developing a private shopify app. The basic requirement is that the coupon created using the app should not be visible in the web interface. A Flutter mobile app is already developed. The requirement is to only display coupons created from shopify app show only on mobile app. Is there away to achieve this ? I could not find any filter in documentation
Hello qasim try this logic 1.When creating a discount code from your app, add a unique prefix like MOBAPP 2.In your Flutter mobile app, fetch only the discount codes starting with MOBAPP_ using the Shopify Admin API. 3.Do not expose these codes anywhere else (storefront theme, emails, banners, etc.). Shopify won’t show them by default unless you manually add them.