I have tried this with 2019-07 and today again with 2019-10 with no luck. Here is my first cURL call !curl --connect-timeout 30 -X GET -i -H 'Content-Type: application/json' -u1234123412...
Sep 13, 2019
I have created a cURL statement to GET products from my store, and I can process all the product information. In the past I did it by asking for a page at a time. However version 2019-07 ...
No content to show
User Activity
Hi Zenoti. I wasn't using the 202401 version, but when I changed to that version, putting in the # sign failed. Remove the # sign from the order number or change the # sign to be %23, and it will work. I tested both at 202401. Odd that it changed...
That worked. Thank you. However, I had tried %23 previously. The difference was how you constructed the end point. query=name:<<order_name>> is the answer, and I tested without the %23 as well. It has been at least 9 months since I looked at this...
Yes, it has to be REST. If the store is setup to use use anything other than the default prefix of # on an order it works perfectly. i.e. order US1234 works because we didn't use the default prefix of # but changed it to use US instead. This is a...
Thanks for the info Athira$, but I had already tried that and it still returns all the orders. I tried it again now just in case something has changed. The problem is that the default prefix in shopify is a #, so shopify stores the order number as ...
No solution was ever provided by Shopify. It is just broken. Going forward I told my customers to stop using the default number sign # and start using something else for a prefix, like US or CDN etc. It is crazy they would make the default prefix ...
I have successfully sent an Order Fulfillment with a single tracking number and it works, however, I tried to send one with multiple tracking numbers, and it marks the order as Fulfilled, but the Order/Fulfillment record returned does not have the Tr...
One thing that I just found out that is different between the two stores is that the store that works perfectly is Shopify Plus, and the store that doesn't work is just Shopify. Could that be the difference? I would have thought that using GET to r...
One thing that I just found out that is different between the two stores is that the store that works perfectly is Shopify Plus, and the store that doesn't work is just Shopify. Could that be the difference? I would have thought the using GET to re...
Funny you should say that. I did try to ask for order_number instead and I though it worked because it returned one order, but only if it was unfulfilled. I tried it on an order that was fulfilled and it returned nothing. Sometimes I need to look ...
Thanks for replying, but in the third example I tried, I used the %23 in place of # and the results were exactly the same. It returns everything. To further clarify, I should be able to leave the # sign off and just use the number portion, but that...
I'm having trouble retrieving single orders from a store. The name of the order is #6298. The # sign is the default prefix on the field "name" on the order. I have another store where the prefix of "name" is CA instead of the default. The order name ...
08-09-2023
Thanks for correcting the accepted solution. I used the 2023-07 api, and it worked too.
08-09-2023
Thank you Dan, Your reply was the answer, and I got it to work. The URL in the accepted solution does not work. It washttps://{StoreName}.myshopify.com/admin/api/2022-07/orders/{fulfillmentID}/fulfillments.json.In your solution, the URL was https:/...
08-08-2023
I'm having the same issue of not being able to send the fulfillments, and I tried this solution, and it didn't work. The documentation says you should use endpoint /admin/api/2023-07/orders/fulfillments.json. i.e don't put the fulfillment id in the...
I can get a list of orders with only selected fields with this endpoint with no problem/orders.json?fields=created_at,id,nameIf I try to get it for a selected date range with the following end point it doesn't work and returns all the fields and not ...