How add a record into data-structure from a parsed json

I want add a record into data structure by using datas (single and collection of elements) from parsed json.
Datas are highlited on the screenshort.
Wich module allows to update data structure ?


I tried this scenario


But I have an error

It is like data montant from iterator is considered as a text , not a number.
It is work fine , when I modify parameter Montant as a text in data structure. But I suppose that a number can be imported in a data store.

By using this scenario, I managed to add records in the data structure.





But the number format issue persists

You’ll need to parse the euro numbers into normal format – specifying that a comma (,) is used for decimal places:

Screenshot_2023-12-11_081220

Alternatively, if you want to keep the euro format, the only way is to change the Montant field into a “string” type variable in the data structure instead of using a “number” type.

4 Likes

Thanks to you I’ve found a solution.
Thank you !