Runtime error in testing the REST Call

0
 So while calling the microflow in the ‘product_overview’ page through the ‘get products’ action button I am getting a runtime error saying ‘An error occurred please contact your system administrator ‘,  I am unable to detect the cause of this error, if anybody can help me in resolving the error. I have attached all related Screenshots of the microflows and their dialog boxes along with errors in details.
asked
1 answers
1

The REST service you are calling is returning a 404 “not found” error. This means the URL you are calling probably doesn’t exist on the server you are calling.

If you want to see the request and response, turn the REST Consume log node up to TRACE.

If you need your microflow to handle the error so it doesn’t fail, add error handling to the Call REST action.
https://docs.mendix.com/refguide/error-handling-in-microflows/

I hope this helps.

answered