Im unable to call rest API With Post Method facing this error While Im trying with Microflow

0
com.mendix.webui.WebUIException: Exception while executing runtime operation    at com.mendix.webui.actions.client.RuntimeOperationAction.$anonfun$apply$3(RuntimeOperationAction.scala:60) Caused by: com.mendix.modules.microflowengine.MicroflowException: Error calling REST service    at MyFirstModule.ACT_CallsigmaAPIPOST (CallRest : 'Call REST (POST)') Advanced stacktrace:    at com.mendix.integration.actions.microflow.RestCallAction.execute(RestCallAction.scala:79) Caused by: com.mendix.modules.microflowengine.MicroflowException: 405: Method Not Allowed    at MyFirstModule.ACT_CallsigmaAPIPOST (CallRest : 'Call REST (POST)') Advanced stacktrace:    at com.mendix.integration.actions.microflow.RestCallAction.checkStatusCode(RestCallAction.scala:117)
asked
1 answers
0

That error is being returned by the REST service you are trying to call. It looks like it doesn't support POST. You need to check the documentation for the REST service to see what it supports. It's not a problem with your microflow.

 

Good luck

answered