Skip to main content

#SOQL Queries #Salesforce Admin #SOQL

 

SOQL QUERY: Query all flows in your Org. (Use Tooling API)

 

Select Id,DefinitionId,MasterLabel, ManageableState, VersionNumber, Status, Description, ProcessType, CreatedDate,CreatedById, TriggerOrder, RunInMode, ApiVersion, Environments, TimeZoneSidKey,  ProgressStatus from flow where Status = 'Active'

6 comments
  1. Oct 14, 2024, 9:18 AM

    You can also identify schedule-triggered flows with the query:

     

    SELECT id, IsActive, Label, ProcessType, ManageableState , TriggerObjectOrEventId, TriggerObjectOrEventLabel, TriggerType FROM FlowDefinitionView WHERE triggertype = 'Scheduled'
0/9000