how to add purchase order with QBO rest api v3.0
I am trying to send a PurchaseOrder created with Intuit .NET SDK v3. I found a suitable example with Invoice: how to add invoice or sales receipt quickbooks rest api v3.0 But I cannot work out what I need to do to make it working for Purchase Order. I am getting BadRequest no matter what properties do I set. DataService commonService = new DataService(context); QueryService<Vendor> accountQueryService = new QueryService<Vendor>(context); Vendor customer = accountQueryService.Where(x => x.Id == "9").FirstOrDefault<Vendor>(); QueryService<Item> itemQueryService = new QueryService<Item>(context);