Create Json Structure in a microflow

0
I have a list of items that need to be send as a json to my API from Mendix. Is there any way we can convert this list to json structure in my microflow and give it as a request to my POST API call?
asked
2 answers
2

You need to use an Export with Mapping. Then you can create a json structure from your domain model entities

answered
2

you can create java action that take list of item and using the java code you can convert the list to Josn string .  

answered