Where can we find Uipath Apps Log

Hello everyone, Can we get UiPath apps logs from orchestrator audit logs?

If yes, can you please help me with steps

Hi @Thrinath_Boyathi

Yes there is. Simply go to your Organization Admin page, and select “Audit Logs” and then filter by “Apps” - should be good:

I recommend you use the new experience mode - the older one doesn’t allow you the ability to filter.

Hi @Thrinath_Boyathi

Pls check below docs:

Happy Automation

Hi @prashant1603765 and @JarrydScott , Thanks for your prompt response,

Actually, i wanted to get audit logs for the apps and show them in UiPath apps screen

Okk

  1. Use the Orchestrator API (/odata/AuditLogs) to fetch audit data
  2. Create a process that calls the API using HTTP Request activity
  3. Parse and return the audit log data (JSON - structured output)
  4. Expose the data via:
    • Process output arguments (recommended)
    • Or Data Service / Queue / Storage (optional)
  5. In Apps:
    • Use Start Process
    • Bind output to a Table/Grid control

Happy Automation