Mar 17, 2021
I'm struggling with making a partial order return. I'm using the order refund API to make a return on a fulfilled order: opening the order: POST /admin/api/2020-10/orders/{order_id}/open.json {} ...
Oct 5, 2020
Trying to make a backend custom app using the guide. Created a development store, on the app screen generated a Merchant install link, opened in a browser. After HMAC verification on my webapp s...
No content to show
User Activity
10-22-2024
Hello, I'm trying to identify order with a return does it have any restocked items and currently can't find anything that will help me identify this. Here is the sample GraphQL:query order {
order(id: "gid://shopify/Order/6020914938115") { #return ...
Yes. Actually by some reason Shopify stores HSC and country of origin over inventory items not products. You can use PUT request as it's shown here: https://shopify.dev/docs/api/admin-rest/2024-10/resources/inventoryitem#put-inventory-items-inventory...
This works to mark order as ready for pickup, but how about marking it as picked up? This is essential thing and making order ready for pickup using API without finalizing it as picked up via API is almost useless.
04-04-2023
Hello, Trying to query cancelled orders only. They should have non-null values:"cancel_reason" and "cancelled_at" - REST syntax"cancelReason" and "cancelledAt" - GraphiQL syntax First query I tried should return all orders after specified date with n...
Hello, According to the new fulfilment API I tried to use mutation fulfillmentCreateV2 which requires FulfillmentOrder and FulfillmentOrderLineItem GIDs. To get them by the known order GID I used simple GraphQL request like this:query Order {
order...
Hello, I am trying to create a product with few variants and assign them (Harmonized System) HS code and Country of origin. According to this article https://shopify.dev/changelog/the-inventoryitem-resource-now-includes-hs-codes-country-codes-and-pro...
I'm sending a POST request to https://retail-it-test.myshopify.com/admin/api/2021-01/orders/3795053084838/fulfillments.json with payload:{"fulfillment": {"location_id": 56908873894, "shipment_status": "ready_for_pickup"}} The result I'm receiving is:...
01-12-2021
Never used bulk operations yet. Just tried the one for the documentation in a Shopify GraphiQL App with all permissions allowed and API 2021-04 but it complains:The change you wanted was rejected.Maybe you tried to change something you didn't have ac...
01-11-2021
Hello,I want to get all products tags (especially that starts with some text but even in case it's not possible I can loop thru all tags and find tags I need). I found a GraphQL request for this here but this I found a strange problem: the maximum ta...
Thank you for the suggestion Greg!I double-checked the location ID and found it was a bit incorrect. Now it works
01-05-2021
Hello,We have an order we want to fulfill but when sending the REST request (according to the API documentation) it returns HTTP/1.1 404 Not FoundThe order:{
"order": {
"id": 3147570577586,
"email": "judith@jamesrodger.com",
...
So in reality I need to make 3 queries: one to get ProductVariant GID, InventoryLevel GID and available quantity, second one to update price and last one to adjust quantity available e.g. I need to have 6 qty total, first query returned me 2 availabl...
10-21-2020
Hello, Never used GraphQL before and possible doing something wrong. I'm trying to adjust inventory quantity in Shopify from an external source but the quantity does not chanes.Getting product GID:{
productVariants(query: "barcode:4548482860270", f...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
508 | 10-08-2024 05:24 AM | |
877 | 03-13-2023 07:38 AM |