No content to show
User Activity
I've followed the steps in https://shopify.dev/docs/apps/deployment/web , and the app is fully working on heroku, apart from the checkout extension element. It's still being fetched at the autogenerated cloudflare-url/extensions instead of my heroku ...
I've updated my shopify.app.appName.toml file to include the read_customers access scope, and tried to deploy the config changes with npm run shopify app deploy. It creates the new version, but doesn't deploy it because I haven't been approved for ne...
02-04-2024
@LuffyOnePiece I've updated my shopify.app.appName.toml file to include the read_customers access scope, and tried to deploy the config changes with npm run shopify app deploy. It creates the new version, but doesn't deploy it because I haven't been ...
02-04-2024
Will I get all customer fields with the read_orders access scope, or do I also need customer_read_orders scope?
02-04-2024
I thought that the customer field wasn't guaranteed, and therefore no way to consistently get a customer ID - https://shopify.dev/docs/api/admin-rest/2023-10/resources/order#resource-object?
02-04-2024
Are there any good ways of linking an order to a customer based on the orders_create webhook response data?
I'm subscribed to the orders_create webhook, and I'm wondering if the email (customer email) field is guaranteed in the order object for online, not POS sales.
I'm building an app that requires access scopes: "write_products,read_orders,customer_read_orders" (as a side note I'm including customer_read_orders in addition to read_orders because I'm not sure if I'll get all customer data in the orders_create ...