Paul
Paul

Reputation: 3253

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

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

Upvotes: 0

Views: 296

Answers (1)

Anupam Chand
Anupam Chand

Reputation: 2662

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

Upvotes: 1

Related Questions