No content to show
User Activity
I created a workflow to assign a tag on an order based on customerJourneySummary details. The issue is that the customerJourneySummary is populated 2-3 minutes after the order is paid. Therefore, the workflow fails as at the time of the run the custo...
Hi there, I am creating an app where I will query the orders at a shopify website from my backend to detect the orders that were referred by my site. I use utm parameters at the initial page that I direct users to and they are passed properly all th...
Hi Liam, May I kindly ask clarity about the below? Do I have to acquire accessToken to be able to use shopify-api for node? If so, do I have to create an oauth approval at nodejs? This is for an embedded public app... If I have to use the exchange in...
I am trying to develop an app to query a store's orders. The app is a public app ie will be installed by many stores but I am currently testing it on a development store. The documentation is somewhat confusing and is very limited with no proper exam...
02-19-2024
Hi Davekeql, Were you able to find a solution? What was your final approach based on your experience? Thanks
I am new to shopify but my experience has been an exhausting one so far due to the documentation and wanted to ask your guidance on the below scenario. I am trying to create an app that will track the referral code after checkout. To be more precise;...
I am trying to develop an app that queries the stores which installed my app. I will basically request the orders for the last week. @Shopify/admin-api-client seems to be the way to go on the nodejs. However, I cannot find where my access token is? I...
02-17-2024
Is there a reason why the session token is undefined for webpixel APIs? What else need to be implemented to access the sessionToken? import { register } from "@shopify/web-pixels-extension";
register((api) => {
api.analytics.subscribe('checkout_c...
I am making a POST call via fetch to my back-end from webpixel api. I would like to authenticate this call to make sure that it is coming from shopify. As far as I can see, I need to use app-bridge to accomplish this. Is this correct? The examples I ...
Hi there, I am new to shopify and could not find an example for the useStorage hook anywhere. Is it possible to use this during webpixel api? The documentation states that "The base API object provided to purchase, and customer-account.order-status e...
I deleted and reinstalled everything, which did the trick for me. Thanks for your help
02-11-2024
Hi there, I am new to shopify and struggling to retrieve query parameters from the URL at the product page (added by a referral). My understanding is that scriptTag will be deprecated and I need to use extensions to insert javascript code, which will...
Hi there, I am new to shopify and trying to find my way around so I would appreciate if you have pointers for the below scenario. 1) I would like my app to get the query strings that are added to my product page url after #. For ex getting ID and VAR...
Hi Aisya, I have not made changes to that file. Please find the content of shopify.extensions.toml under the extensions folder. Where should I make the change? # Learn more about configuring your checkout UI extension:
# https://shopify.dev/api/check...
Hi there, I am new to Shopify and installed the CLI to start developing an app. The app has a checkout extension hence I used the below steps: npm init @shopify/app@latest
cd my-app
npm run shopify app generate extensionAt the documentation, the Chec...