I'm pretty sure I've blogged about how much I love postman before, it's an amazing tool for kicking off and testing your automation projects. Being able to see the cURL commands is totally awesome too.
This is a simple blog on how to import ALL your orchestrations (or the ones that you have permission to) into a single postman collection.
There is probably a better way of doing this, but because JDE wants an authenticated call to the listing, I could not use the standard postman import from a URL - as this only seemed to be unauthenticated.
As you can see, there is an option to import from a link, you get a little error down the bottom right saying "Import failed, format not recognized".
So, plan B.
First create a new get request, that looks something like this:
https://f5dv.mye1.com/jderest/v3/open-api-catalog
Once you have done this, ensure that you're authenticating properly to AIS. I'm using and allowing basic authentication:
Once you send that request, hopefully you get a reply like the one above.
You can use the save button in the middle right of the screen to save this to a local JSON file.
Choose your file, then you will get this:
Perfect. Once you hit okay, you'll get a new collection with ALL of your orchestrations.
You will know all of the JSON inputs and all of the standards. postman also does some nice stuff with variables and the relative paths for the calls.
This is a really neat way of getting all of your orchestration function definitions in one place. Postman also makes the documentation process nice and easy!