Can we find all the proxies list using a particular shared flow in ApigeeX?
1 Like
Yes, but you need to rely on “brute force” , basically:
- export each API proxy (and maybe each revision of each proxy)
- unzip the bundle
- check for FlowCallout policies that reference a particular shared flow
The good news is, there is an external tool, apigee-scanner, that can do this kind of scan for you.
Example
node ./scanProxies.js --token $TOKEN --apigeex --org $ORG --latestrevision --sharedflowuse sharedflow-name
It does other scans too, and is easy to extend.
Good luck.