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
How can I get the request-signature value from my original request's header into the Http Operation?
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
How can I get the request-signature value from my original request's header into the Http Operation?
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.