0

I'm trying to create a logic app that is triggered from an HTTP POST where I send it an image. What would my JSON schema look like when setting up the HTTP trigger assuming I have image "picture1.jpg"?

Do I need to POST the image to my Logic App as a stream?

Anthony Ryan
  • 365
  • 2
  • 6
  • 19
  • @mitch-stewart would be the prefered approach, otherwise you can encode your image stream to base64 to pass it in the body – Thomas Sep 11 '18 at 06:21

1 Answers1

0

Rather than POST the image directly to the Azure Logic App endpoint, I'd upload the image to Azure Blob Storage and use this as the trigger. Here's a helpful article outlining trigger creation.

Mitch Stewart
  • 1,253
  • 10
  • 12