I'm working with CRM REST Builder to build my requests. I'm creating a web resource from it, I'm inserting a record with Decimal input. when entering a number from decimal input, this error is displayed:
Cannot convert a value to target type 'Edm.Decimal' because of conflict between input format string/number and parameter 'IEEE754Compatible' false/true.
Please help.
I found that when submitting a json message to CRM Rest API, if the value is a string it gives me this error.
{ unitprice : "1234.00" }
You need to convert it to a number before hand so that it resolves like this:
{ unitprice : 1234.00 }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With