No content to show
User Activity
09-23-2023
4+ years have passed since the introduction of unit prices and someone asking for access to unit_price and unit_price_measurement via the REST API which has since been archived, and it looks like it's still not possible to request unit prices via API...
Exact same problem... a bit sad that there isn't even a reply My best idea now is to download (and probably cache by day to not get rate-limited) the full list, e.g. https://help.shopify.com/txt/product_taxonomy/de.txt (replace country code with th...
How can such a simple feature be in beta status for 3 years already???? (many more comments I want to add but i better keep quiet)
Another update: I eventually figured out that I can turn the query around, fetching the delivery profile per variant instead of the variants per delivery profile. query { productVariants { edges { node { id deliveryProfile { ...
Update: I've noticed that the bulk operation finishes successfully when I remove the variants sub-query from the profile items and query for the product ID instead. query { deliveryProfiles { edges { node { id defaul...
We run an app that bulk-queries a shop's delivery profiles (and products) to generate data. After a couple of days of running that bulk query for all shops that have our app installed, I noticed that the data generation wasn't working for a specific ...
06-23-2022
This has actually been fixed, at least in API version 2022-04. The profile item id is now available.
Confirmed that this is still not working when the change came from the Admin REST API.
Afaik it's possible to work around this by not using the Clipboard API but the older way of interacting with the clipboard: https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Interact_with_the_clipboard#using_execcommand(), which ...
09-17-2021
I've checked all the API docs and all of them suggest that it's not possible, however I've also noticed that there are some apps out there that can do this (e. g. Amazon Integration Plus).When creating a draft order via GraphQL API:If I add a custom ...
I'm maintaining an app and we also need to be able to retrieve `unit_price` and `unit_price_measurement` for each variant from the Admin REST API, specifically the `GET products.json` endpoint. It's a legal requirement in Germany to provide these for...
04-28-2021
Sorry for the late reply. I did find a temporary work-around.First I get the shipping zones using the REST API. const res = await fetch(`https://${shop}/admin/api/${SHOPIFY_API_VERSION}/shipping_zones.json`, {
method: 'GET',
headers: { 'X-Shopify...
I'm using the shipping_zones.json Admin REST API endpoint to get a list of all configured shipping zones and their rates so that I can determine the shipping cost per product variant.This works fine for the default shipping zones, however the shop I'...
01-04-2021
I just wanted to implement a label action that copies the text field's value to the users clipboard. It's very straight-forward: <TextField
readonly
value={url}
label="URL"
labelAction={{ content: "Copy", onAction: async () => navigat...
use tagsUnfortunately tags are public-facing, e. g. the shop customer will be able to filter the catalog by tags. Not really a good place to store app-specific data.
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
4319 | 06-23-2022 06:46 AM |