If RegType is showing but Name is blank, most probable reason might be one of these:
- Wrong Title on Attendees section
- Wrong Title on Name text control
- Name control not physically inside inner repeating section
- JSON not wrapped properly
Check below :
The inner repeating section’s Title is incorrect, It must be exactly as : Attendees , its is case‑sensitive, should not be having spaces
The Name field is not fully inside the Attendees repeating section , If the Name text control sits outside the inner section borders, Power Automate will not populate it.
The correct template structure should be Repeating Section -> Title: GroupedAttendees
Plain Text -> Title: RegType
Wrap your array before passing to Word:
{
"GroupedAttendees": [
{ "RegType": "GUEST", "Attendees": [{ "Name": "Vince"}] },
{ "RegType": "OTHER", "Attendees": [{ "Name": "Keith"}] },
{ "RegType": "ALL STAR", "Attendees": [{ "Name": "Ken"}, { "Name": "Mike"}] }
]
}
Thanks,
Manoj
✅If this answer helped you, please consider marking it as Verified, it really helps others in community