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=newRestAPI("http://www.yourstore.co.nz/wc-api/v3/","<WooCommerce Key>","<WooCommerce Secret");varwc=newWCObject(rest);// Get all ordersvarord=awaitwc.GetOrders();//Get all orders with status processingvarparms=newDictionary<string,string>(){{"status","completed"}};varord=awaitwc.GetOrders(parms);