ShopifySharp
ShopifySharp copied to clipboard
Order not coming in api
in shopifysharp order data not coming
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
var orderService = new ShopifySharp.OrderService(URL, password);
var orderList = await orderService.ListAsync(new ShopifySharp.Filters.OrderListFilter() { Ids = new List
i want to pick one order using Orderid but not pick a specific order Please give me a solution where i can get any order using order id Thank you
Hey @Joyjk, which version of ShopifySharp are you using here?
You should use Get instead of List if you are fetching a single order.
From memory if you use List, you need to use Status = 'any' to retrieve archived orders.