
7jv04 (7jv04) asked a question.
Hi Okta Community, happy Taco Tuesday!
I'm not super familiar with JSON but I'm trying to figure out a query that will list what sign-on method is being used for any given app in my tenant. Bookmark, RADIUS, SAML, OIDC, SWA, etc...
I need to get a Postman integration set up first, but once I'm there, has anyone else already done this and can share the query syntax? Hoping to skip converting the json to csv and filtering from there if I can just pull the app name and sign-on method to start with. I've found some others that made queries that were close but didn't include the details I'm after. Thanks!
Honestly, this should be a feature request for the built in Reports section.
Best regards,
-Jacob

@7jv04 (7jv04) -- This is a top level attribute (signOnMode) when listing all applications in your org (apps API endpoint).
The API documentation for the endpoint is here:
https://developer.okta.com/docs/api/openapi/okta-management/management/tag/Application/#tag/Application/operation/listApplications
While I am not super familiar with Postman you can likely write a "post request script" to parse the data. Scripts in postman are in JavaScript. This means you can probably find someone that knows JavaScript and have them show you how to pull 3 different key's from each object in an array of objects.
id = Okta application ID
label = The displayName of the app
signOnMode = the value you indicated in this post