Hi all. I'd like to request your help resolving this 400 error.
I am writing a workflow to send an email, triggered by submitting an MS Form. The form has one mandatory image attachment. Most of the flow is working, however I'm getting a 400 error with the message Invalid request using Get file content using path from OneDrive. The workflow is shown below. The expression in Get file content by path returns the correct URL - I can paste it into a browser and see the image.

Submitting a form results in an error:

The raw inputs are:
{
"host": {
"connectionReferenceName": "shared_onedriveforbusiness",
"operationId": "GetFileContentByPath"
},
"parameters": {
"path": "https://westwindenergyaustralia-my.sharepoint.com/personal/powermark_user_w-wind_com_au/Documents/Apps/Microsoft%20Forms/WestWind%20Energy%20OHS%20Compliance%20Document%20Upload/Question/Cockatoo%20and%20magpie%20on%20balcony%20rail_Powermark%20User.jpg",
"inferContentType": true
}
}
The path is valid - I can paste it into a browser and see the image.
The raw outputs are:
{
"statusCode": 400,
"headers": {
"Cache-Control": "no-cache",
"Pragma": "no-cache",
"Transfer-Encoding": "chunked",
"x-ms-request-id": "4c33f474-25b6-46f3-aace-122f89243a05",
"X-AspNet-Version": "4.0.30319",
"X-Powered-By": "ASP.NET",
"Timing-Allow-Origin": "*",
"x-ms-apihub-cached-response": "false",
"x-ms-apihub-obo": "false",
"Date": "Thu, 29 Jun 2023 00:34:44 GMT",
"Content-Type": "application/json",
"Expires": "-1"
},
"body": {
"status": 400,
"message": "Invalid request",
"source": "api.connectorp.svc.ms"
}
}