I have a workspace in FME Flow but I don’t know wich automation it’s used in. How do I find it? We have 75 automations, I don’t want to manually search through them. It hasn’t run in a while so I didn’t find it under Jobs/Completed.
Solved
Find automation that contains certain workspace
Best answer by david_r
If your FME Flow instance is recent enough, you could test the REST API V4 (currently in technology preview) which has a new endpoint to query object dependencies:
https://bluesky-safe-software.fmecloud.com/fmeapiv4/docs/index.html
You’d first use the endpoint
GET /automations
to get the IDs of all your automations, then pass each of them on to
GET /dependencies
and parse the results. I would expect the result to list all workspaces referenced in each automation, in some way or another.
You can of course do this using FME and an HTTPCaller with a web connection to your Flow instance, and some JSONExtractor / JSONFragmenter to parse the results.
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.
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.



