Hi Everyone,
I am using http request activity to call an API, I am able to call the main api endpoint , Iam getting the success code 200. but when i call the sub api i am getting the 403 error as the status code. Can anybody tell me how to resolve this issue. Is anybody is having guidelines to how deal with the http and api request using UiPath. I am using UiPath 018.4 enterprise edition.
i am suspecting it might be due to SSL certificate issue, but don’t know , how to deal with this problem
I am trying to call the api which is present in the same domain. Is it necessary to pass client certificate even if both the client(UiPath) and server(Api) stays in same domain? If yes, from where I should get the Client certificate?
That depends on the server or the authentication configured in the server side. If you are able to send it through postman, it should work in UiPath as well. Can you do the entire request again (exactly as postman) in uipath and check if it is working
Yes, i tried using postman, If i disable ssl certifcate then I am , getting the result , If I enable the SSL certificate, i a m not getting the result. please suggest?
@HareeshMR able to get the status code 200, finally issue resolved.
I used to pass the outh token in outh token field of http request activity, when I passed the token using header I was successfully able to hit the api.
Thank you Hareesh for your valuable inputs and helping me in resolving the isssue