GetFilteredWorkflowSchedules
Filters a set of schedules and returns only those schedules that match a regex filtering expression. It returns a collection of data contract objects from WorkflowScheduleData.
Inputs | Data Type | Description |
---|---|---|
scheduleFilter | String |
Specifies the regex filter to filter the schedules by. |
Outputs | Description | |
---|---|---|
Collection<WorkflowScheduleData> |
Returns a list of preconfigured workflow schedules that match a regex filtering expression. |
Data Contract
Properties of the WorkflowScheduleData object. This object is returned by the GetFilteredWorkflowSchedules method.
[DataContract]
public class WorkflowScheduleData
{
[DataMember]
public string DisplayName;
[DataMember]
Public string UserVersion;
[DataMember]
public string ScheduleAddress;
}