How to get HttpResponseHeader?

0
I use Microflow to call the rest service, the returned information is json, but there is still information in the responseHeader, how do I get it? Response   ResponseHeaders  
asked
1 answers
3

You have access to a latestHttpResponse object. You can retrieve the headers from there by using a Retrieve action, and selection over association:

 

 

You can check the System module to see how these objects are related:

 

answered