Assuming crmlineitems is required, the following 3 results were found.
The standard code you used to use even for REST API v2.0 would have been something like the following: // // init l_CrmLineItems = List(); // // some sample values v_CrmProductID = "123456789012345678"; // // build up product details JSON to send...
// // -------------------------------- Invoice Line Items -------------------------------- // // initializing l_CrmLineItems = List(); // // loop through line items on the Xero invoice for each m_XeroLineItem in m_ThisInvoice.get("LineItems") { // //...
// // -------------------------------- Quote Line Items -------------------------------- // // initializing l_CrmLineItems = List(); // // loop through line items on the Xero Quote for each m_XeroLineItem in m_ThisQuote.get("LineItems") { // //...