Internal activity logs

Hello community! I have a question that I couldn’t find in the UiPath documentation neither in the forum. When I use an activity such as an API call (http client, POST request, for example), for me in debug it’s like a black box: I pass the input and I get an output, but internally I don’t know what the activity does. The detail, how it has setted up the call, etc. Is there a way to see that information as logs? Thanks in advance and greetings!

@marta.RPA

Can you please elaborate on what details you want to see…ideally if tis api you hit and till api responds you dont have anything that you can check anywhere not only on UiPath studio

cheers

depending on your information maybe the following will help

  • When checking the dependencies we can derive that RestSharp is involved within the Activity Implementation

  • in some scenarios the call is passed to other tools within the middle and from there details like request headers, body… can be inspected

I want to see how it builds the call with the parameters that I specify in the activity properties

@marta.RPA

That is the whole crux of the activity…like for any activity…the outer shell code is the activity that you see in ui…

Example…whatever you add in properties are the input arguments for the activity(which basically is a method)

And the data you pass will be passed as variables to the method/activity which will have the rest sharp implementation…like the same way any other restsharp implementation is present

Cheers