In your domain model you have the entity ScheduledEventInformation. It has the name of the scheduled event and the start time, end time and also the status. If you use find usage of that entity it will show you the page ScheduledEventInformation. Make sure you can reach that page from your navigation as an admin. This will show you all the details. The status can be Running, Completed, Error or Stopped. So you can filter on Error and it will show you all the scheduled events that did not finish normally. In your Sprintr environment you can decide which scheduled events are activated.
With the deploy API you can retrieve all the scheduled events that are activated also. See the documentation here: https://docs.mendix.com/apidocs-mxsdk/apidocs/deploy-api
It is in the part 3.13 Retrieve Environment Settings
Regards,
Ronald
Check ScheduledEventInformation entity from System module. This will give you the details of when the scheduled event has run.
To get the list of scheduled events that is configured, I have used MxModelReflection.Microflows and I always name the Scheduled event to start with “SE_”.
So with proper XPATH on Microflows, I was able to get the list of Scheduled events.