Handle Error in Canvas App While calling Power Automate from Canvas App
Handle Error in Canvas App While calling Power Automate from Canvas App.
// Get customer loans
If(
IsError(
GetAllLoans.Run("CUST002")
),
// On error
Notify(
"Error: could not retrieve customer loans",
NotificationType.Error
),
// On success
Navigate('Success Screen')
)
Hope this helps.