You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Diemaco edited this page Dec 3, 2022
·
3 revisions
WooCommerce.Net Orders
varrest=new RestAPI("http://www.yourstore.co.nz/wc-api/v3/","<WooCommerce Key>","<WooCommerce Secret");varwc=new WCObject(rest);// Get all ordersvarord=await wc.GetOrders();//Get all orders with status processingvarparms=newDictionary<string,string>(){{"status","completed"}};varord=await wc.GetOrders(parms);