This is my demo UiPath app.
After uploading file.
file will be save in storage bucket.
Bot will trigger and process pdf file
Expected output :
I want to display all the bot execution log messages in UiPath apps.
How to acheive this ? which ‘Add control’ to use to display log and what settings to do ?
Muralikrishna_Surve:
This is my demo UiPath app.
After uploading file.
file will be save in storage bucket.
Bot will trigger and process pdf file
Expected output :
I want to display all the bot execution log messages in UiPath apps.
How to acheive this ? which ‘Add control’ to use to display log and what settings to do ?
You can create a process to get the log messages using api calls and then link process output to the apps
This is to start a process from app
Apps - Rule: Start Process .
And for api calls you can use swagger to gwt the required endpoints and header and body
<orchestratorurl>/swagger/index.html
The UiPath Documentation Portal - the home of all our valuable information. Find here everything you need to guide you in your automation journey in the UiPath ecosystem, from complex installation guides to quick tutorials, to practical business...
The UiPath Documentation Portal - the home of all our valuable information. Find here everything you need to guide you in your automation journey in the UiPath ecosystem, from complex installation guides to quick tutorials, to practical business...
Anil_G
(Anil Gorthi)
December 13, 2025, 3:54am
3
@Muralikrishna_Surve
may I know why you want to show all logs when you have jobs pge already
the requirement looks more like replicate what jobs page show.. if you need it api is the way
alternately you can make an attended process and let it run on user machine so that he knows the progress and no app is also needed can be triggered from assistant and also files can be sent as input
cheers
1 Like
@Anil_G
I want to give bot process update to BU in UiPath Apps when user uploads pdf and submits. The bot execution started.
Expected output :
Process starting…
Downloaing PDF…
Extracting PDF…
Processing PDF…
Mail sent…
Process completed…
What is way to replicate message in app textbox using API ?
I
Anil_G
(Anil Gorthi)
December 13, 2025, 2:16pm
5
@Muralikrishna_Surve
if thats the requirement then easiest would be to have a data service and then update stattus there
link the data service to app to get the updates
also as said earlier attended process would make sense if they are constantly seeing for update..
cheers
1 Like