Hi all,
We are struggling with a Power Automate flow we have. It was working fine up until a few days ago.
The process is as follows.. submit a form through PowerApps and in flow we create a JIRA ticket, get attachments from SharePoint, loop through them, and POST to JIRA.
We are getting the following error:
Request to Azure Resource Manager failed with error: '{"error":{"code":"InvalidContentOperation","message":"Decoding as bytes is not supported for content envelope of type 'multipart/form-data' when the content property is not set."}}'.
Here is the flow setup

and the code behind it
{
"$content-type": "multipart/form-data",
"$multipart": [
{
"headers": {
"Content-Disposition": "form-data; name=\"file\"; filename=@{items('Apply_to_each_2')?['DisplayName']}"
},
"body": {
"$content-type": "@{outputs('Compose_8')?['$content-type']}",
"$content": @{body('Get_attachment_content_2')?['$content']}
}
}
]
}
Any help would be appreciated!