Hello,
I am trying to POST an email (Outlook) PDF attachment file to my Azure Function by HTTP POST.
The function knows to take POST body, which should contain PDF byte array, and process it. (Tested with Postman, works.)
But if I send it from the Flow as HTTP POST request with the body of "Attachments Content", it arrives at the function in the wrong format. Function logic doesn't recognize it as PDF.
How should I send the attachment file content so it will arrive as correct byte array?

