REST call returning no data

0
Hi all,  I’m trying to grab some data from a third parties API.  I’ve set up a Call REST action in a microflow that connects to an API, i’ve tested the request in postman and it goes through fine.  I’ve not got anything in the Request tab, do I need to? In response tab, i’ve set it to Apply Import Mapping (i’m using only two attributes to start with). When i run the microflow it does load but nothing is returned or created and I get no responses in the logs   
asked
2 answers
2

Did you set the Log level REST consume to Trace so you can monitor the responses? From your console you can then inspect the data. If data was send you might find here the reason why the mapping failed. But my gut feeling is that no data was send.

Regards,

Ronald

[EDIT]
Your post is saying you want to retrieve some data but your REST action is PUT instead of GET.

answered
0

All seems to be well. Your response is empty because it returns the Root-entity. The data you are looking for has been stored to the database by the import mapping.

What you need to do in your microflow is retrieve the TestEntity over association of the Root.

answered