This article provides two methods to find the creation date or the update date for an application integration.
- The first method is the officially supported method using the Okta API to list the application or to list all apps.
- The second method is an unofficial method using the Rockstar Chrome Extension.
- Okta API
- Reports
Method 1
To retrieve an application's creation date or date of last update, perform an API call. The following example uses Postman, a popular REST API client.
- Configure Postman to use the Okta API using the instructions in the Okta Support article How to Integrate Postman with Okta.
- Perform the List Applications API call. The syntax for all apps is:
GET {{url}} /api/v1/apps.
3. This will return a JSON formatted response of all applications, with the date created and the date updated included.
NOTE: The API call will return a maximum of 200 results by default.
-
- If more than 200 results are expected, remember to use pagination. See How to Use Pagination when Making API Calls in Postman.
Method 2
Retrieve the same information using the Rockstar extension from the Chrome web store. With the extension enabled and active, perform the following steps:
- Log on to the Okta Admin Dashboard.
- Navigate to Applications > Applications.
- The Rockstar app will display the option to Export Apps (Custom).
- Click the option, and a window will open, allowing for several additional options to be selected, including Created Date.
- Once selected, click Export.
- A CSV file will then be downloaded to the local system with the relevant information.
Related References
- Core Okta API
- How to Integrate Postman with Okta
- How to Use Pagination when Making API Calls in Postman
- How to Use the Rockstar Browser Extension
