I am using HTTP connectors in Power Automate to duplicate and process Forms.
To duplicate an existing form, I use:
POST
formapi/api/@{variables('TenantId')}/groups/@{variables('GroupId')}/light/forms('@{variables('TemplateFormId')}')/CopyToUser
Body:
Then, I generate the Excel file related to this form with:
formapi/api/@{variables('TenantId')}/groups/@{variables('GroupId')}/GetOrNewExcelInOneDrive(formid='@{variables('NewFormId')}',forcereexport='true')
A few months ago, this process worked correctly — the Excel file automatically contained all the responses from Forms.
Now, when I open the generated Excel file, I see the following message:
"Forms synchronization is no longer recommended. Forms is no longer synchronized with this workbook. To continue synchronizing new responses, update the workbook."
This means responses are no longer automatically inserted into the Excel file. We must now manually click the update button to retrieve the Forms responses.