I am having an issue where passing in a 4 decimal places price ($15.3550) in the Line Item over to Xero. Xero by default rounds it to only 2 decimal places ($15.36) causing pricing mismatch in the total price for the Quote.
My question is how do I inject this “unitdp=4” as part of every interaction with Xero using make.com’s Integration? The problem I have right now is with creating new Quotes.
which module are you using? if you are working directly with the api and using http module then you can use the query string and pass the unitdp=4 like this
or you can try formatNumber function and see if it works
Sorry I forgot to mention I am using the make.com Xero App.
The problem I am having is that Xero does receive the 4 decimal places. However it by default will round it up to only 2 decimal causing the amount to not match inthe order total.
I must pass Xero “unitdp=4” as part of the request to tell Xero side to use 4 decimal places when it works on the data the Xero make module pasess it.
This is where I am stuck. Seems like have have to use the http module which is much more work just for one small missing feature?