How do I transfer value of header from HttpTrigger to Http Action in a logic app?

240 views Asked by At

I have a logic app and I am trying to transfer the headers from a HttpTrigger to a Http operation, i.e. I am trying to forward the request

enter image description here

How can I get the request-signature value from my original request's header into the Http Operation?

enter image description here

1

There are 1 answers

0
Anupam Chand On BEST ANSWER

You will need a Parse json step in between. This can be used to extract the data elements from the header in your incoming request.

Set your "Contents" to Headers as shown. Then click on "Use sample payload" and paste your headers in JSON form. It will automatically create the schema for you. Then in any following steps you will be able to use the fields from your header. enter image description here

enter image description here