Unable to display EUR on custom card

Hi there,

I’m not sure if this is just me, or if I ran into some bug. Here’s what’s up: I tried to display an amount on a custom card and that amount is supposed to be displayed in EUR. After getting a non-descript serialization error for two days (side note: please make them more descriptive!), I finally changed my currencyCode from “EUR” to “USD” and it worked! If this is a bug, could you fix it and if it isn’t, could you please help?

Just in case, my app id is 224758

This is my response (before changing it to USD):

{
 "results": [
 {
 "objectId": 0,
 "title": "Festpreisangebot - v1",
 "link": "https://script.google.com/someurl",
 "betrag": {
 "value": 6376.52,
 "currencyCode": "EUR"
 },
 "erstellungsdatum": 1597671799208,
 "status": "OFFEN",
 "ersteller": "Marie B."
 }
 ]
}

Hey @MaxSchindler,

On my end, I was able to use the currency - EUR on my own CRM extension with this response body:

{objectId: 123,
 title: "test title",
 description: "test description",
 "betrag": {
 "value": 6376.51,
 "currencyCode": "EUR"
}

In this case, I would expect that using EUR as the currency code should work just fine.

Could you try the simplify response body that I shared and see if it works for your team?

Hi Wendy,

please accept my apologies for my late reply. The app was already in production and I didn’t want to go ahead and just break it while my colleagues were using it. Now, I had the opportunity to test your simplified response body - and it worked!

What’s worse - when I changed it so that my original response body to contain “EUR”, it also worked.

I don’t know why or how, but I’m happy it works as expected now and I’m grateful for your help.