Have this request (C#):
JobList scheduledJobs =
JobStorage.Current.GetMonitoringApi().ScheduledJobs(0, int.MaxValue);
It returns all scheduled jobs. I need to filter them on server side to reduce the request time
Hi there, I hope this can help:
You need to create your own DTO and return the data you want to show, you can use automapper. I did it and works like a charm.