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.
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.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.