I'm running into an issue where data is being rounded/truncated when sending to a parameter of DataSource type "Local" via the HTTP API.
I created a Local parameter through the HTTP API named "testparam1", and it is of type "float64_t", which is a 64-bit float as shown in this image:

When I attempt to set this parameter to 88.141988885 via the HTTP API, it is truncated to 88.14199 shown here:

When setting this value through the website's "Set Value" button, the value is also truncated:


Is there a way to push to this local parameter via the HTTP API without truncation or rounding? Other float64_t parameters do not encounter this issue when data is sent via UDP.
Thank you