Webservice response is not getting populated into variable

0
I am consuming a webservice and i can confirm that my module is getting the response from down stream application but the response is getting stored in 'output' variable. am i missing any thing to populate the response? 
asked
2 answers
1

$Output is an object (of the type shown in your microflow).  If you put some additional Retrieve actions in your microflow, you'll be able to retrieve all of the child objects.  2 notes:

  • you'll only be able to retrieve 1 level down at a time
  • you need to retrieve via association, since the objects are not persistable

 

Hope that helps.

**Edit**

I can't tell what the object names are because they are cut off in this screen shot, but it seems to me that the association I have highlighted below is 'upside down', i.e. it is 1---Many in the wrong direction.  Is the returned value the top object shown below or the second object shown below:

answered
0

Thanks Mike and Ronald. i used both of your approach and able to resolve it. It is an issue with Mapping. i used the auto generated the map and entities based on schema and those auto generated mapping/entities are not working as expected. i have to create a new entity and change some logic is Mapping to resolve the issue. 

answered