I was struggling with an JSON response from an API I use.
Among other things, it returns a key/value that provides a currency value.
“paid_amount”:“12.61 BRL”
Trying it via the API’s documentation page, via Postman, and a few other tools: it gives that format. However, Bubble’s API connector plugin gets a different format.
“paid_amount”:" R$ 12,61"
I figured Bubble was recognizing “12.61 BRL” as a currency value and displaying the localized version. I thought: hmmm, so Bubble sees this as a number and not a string I should be able to save it directly to a field where the data type is number. But it doesn’t work.
Has anyone experienced this before? Any clues?