Error while calling a API and get the response

I’m following this sample for an HTTP call

I’m getting the below error in postman when I try to call this flow

{
“type”: “ConnectorRequestException”,
“message”: “HTCL-02005 Request url required.”,
“code”: null
}

And from the BPMN flow, I call the connector like below

image

The URL will be the Logic app URL for testing. The call is not happening and throwing an error.

Hi,

The following is happening: you start the process and within the same thread, the process advances to the activity HTTP Call, which fails. The error thrown by the http connector is returned to your REST call.

I recommend checking the configuration of the activity. Can you check whether activity HTTP Call has an input called url and that the value of this input is the URL you want to call? If so, can you call it directly from postman?

1 Like

Got it, I was trying to call an HTTP connect by HTTP connector. When I try the HTTP connect directly it works.