help_outline FAQ chevron_right FAQ chevron_right Detail

Can I send a notification only when a specific flow is pending approval?

approval flow notification pending can only

Yes. Set the Run Condition to a query like: SELECT CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END FROM Flows WHERE FlowDocumentID = 10 AND FlowState = 0. This sends a notification whenever there’s at least one pending approval for flow ID 10.