Configuring Customized Alerts in Orchestrator

Is there a way to create customized email alerts in UiPath Orchestrator (Version: 2020.10.3 - On Prem).

The conditions for these alerts are as follows:

  1. Send an alert when a scheduled job is not invoked/failed/faulted.
  2. Send a summary of job run status on a daily basis.

@Christopher_Gonzales

  1. Customized Job Status Alerts:

    • Utilize Orchestrator’s Webhooks feature to trigger custom alerts when a job status matches specified conditions (not invoked/failed/faulted).
  2. Daily Job Run Summary:

    • Develop a UiPath workflow to retrieve daily job run status.
    • Schedule this workflow using Orchestrator Triggers.
    • Send summary using Orchestrator API or email activities within the workflow.

@Christopher_Gonzales

Send an Alert for Job Status:

-Go to the “Triggers” page.
-Click on the specific trigger associated with the scheduled job for which you want to set up alerts.
-In the trigger configuration, there should be an “Alerts” section.
-Configure the alerts based on your conditions (e.g., “On Failure,” “On Faulted,” etc.).

Daily Summary of Job Run Status:

-Orchestrator has a reporting feature where you can create customized reports.
-Navigate to the “Reports” section in Orchestrator.
-Create a new report that summarizes the job run status.
-Set the report to run daily.
-Within the report configuration, look for an option to configure email notifications.
-Set up the email notification with the desired recipients.

Cheers…!