Skip to main content
Solved

FME Automation FME Flow Schedule Reporting

  • February 2, 2026
  • 5 replies
  • 49 views

mlyman
Contributor
Forum|alt.badge.img+8

I have FME Automations that use the “FME Flow Schedule”.  In the “FME Flow Schedule”, I am using the Schedule Type “CRON Expression”.  Is there a way to get a report for all the “FME Flow Schedule” from all the FME Automation so that I can know when an FME Automation is scheduled to run?

Best answer by ebygomm

FME Flow Rest API V3 allows you to get this information via a schedules api call, including automations doesn’t seem to be documented in V4 so not sure whether it’s possible or not.

 

The v3 api call is 

FMEURL/fmerest/v3/schedules?includeAutomations=true&limit=-1&offset=-1

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

5 replies

redgeographics
Celebrity
Forum|alt.badge.img+62

Unfortunately, while there is an API endpoint to get information from an Automation that does not include the type of trigger, nor its settings.

For this reason, I generally recommend using tags for your Automations, for example “schedule”, “daily”, “weekly” and “monthly” to quickly be able to access them.


ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • Best Answer
  • February 3, 2026

FME Flow Rest API V3 allows you to get this information via a schedules api call, including automations doesn’t seem to be documented in V4 so not sure whether it’s possible or not.

 

The v3 api call is 

FMEURL/fmerest/v3/schedules?includeAutomations=true&limit=-1&offset=-1

 


mlyman
Contributor
Forum|alt.badge.img+8
  • Author
  • Contributor
  • February 3, 2026

@ebygomm The API call is exactly what I was looking for.  Thank you.  The API call also led me to look at the filters on the Schedules.  In the Filters Source drop down I can select Automation and it shows the CRON setting in the RECURRENCE column.

 

I’ll be using the API call as it gives me additional information that the web page doesn’t.


ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • February 3, 2026

Deleted


ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • March 2, 2026

For anyone who comes across this in future, it doesn’t appear to be documented but 

FMEURL/fmeapiv4/schedules?limit=100&offset=0&sourceType=automation

will return details of automations triggered with a schedule using the last version of the rest api