I am using encodian to populate word documents (i am in the free tier).
Everything works fine for single select and text boxes but my issue comes about when i have multiselect check boxes.
When i get results in power automate, it creates an array of all of the selected options. The issue is the array doesnt look how encodian wants it.
This is my json for encodian:
{
"EVENTNAME": "",
"NOWDATE": "",
"CLIENTNAME": "",
"SUBPROCESSOR1": "",
"PROCESSING1": "",
"COLLECTEDDATA": "",
"EXAMPLE": ""
}
and this is what is populated
{
"EVENTNAME": "TEXT",
"NOWDATE": "17 July 2023",
"CLIENTNAME": "TEXT",
"SUBPROCESSOR1": "Test Name Of Subby",
"PROCESSING1": "This is some info.",
"COLLECTEDDATA": "[
"Data 1",
"Data 2",
"Data 3"
]",
"EXAMPLE": "TEST"
}
encodian want it to look like this
{
"companyName":"Encodian",
"bullets": [
{
"listFirstName": "Efren",
"listLastName": "Gaskill"
},
{
"listFirstName": "Sanly",
"listLastName": "Keyme"
},
{
"listFirstName": "Mark",
"listLastName": "Nigma"
}
]
}This has key/value pairs.
How could i go about getting this from forms?