
Hello!
I have a word template with 2 Repeating Section Content Control. 1st called accounts 2nd called payments. The 2nd is embedded to the 1st. And the payments contains paymentids what is a Plain Text Content Control.
I have a Flow to get this template and get data from D365 to populate the template like this.
The accountData looks like this:
{
"accounts": [
{
"accountname": "Account1",
"payments": [
{
"payment_id": "pay1",
"amount": 111
},
{
"payment_id": "pay2",
"amount": 222
}
]
},
{
"accountname": "Account2",
"payments": [
{
"payment_id": "pay3",
"amount": 333
},
{
"payment_id": "pay4",
"amount": 444
}
]
}
]
}
And the result is this
The question is the 2 level repeating thing should work or not? If it should I think I mess up something.