<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
How to See the Creation Date of an End User via API Call
Okta Classic Engine
Okta Identity Engine
Administration
Overview

This article describes how to see the creation date of an end-user via API call. This example uses Postman to send API calls.

Applies To
  • Postman Collection
  • API
Solution
  1. Integrate Postman with the Okta tenant.

  2. Import the Users Collection (found under the Okta Admin Management folder) into Postman.

  3. In Postman, select the GET User API Call.

  4. Add the userID of the end user to the GET request. It should look something like the following:

    GET {{url}}/api/v1/users/{{userId}}

    NOTE: The List Users API call can be used to list all users, including their userIds.

  5. Click the Send button to send the API call.

  6. In the response, locate the created variable, which displays the date the user was created as its value. It should appear in the following format:

    "created": "2022-03-29T18:06:22.000Z"
Loading
How to See the Creation Date of an End User via API Call