This article describes how to see the creation date of an end-user via API call. This example uses Postman to send API calls.
- Postman Collection
- API
-
Integrate Postman with the Okta tenant.
-
Import the Users Collection (found under the Okta Admin Management folder) into Postman.
-
In Postman, select the GET User API Call.
-
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.
-
Click the Send button to send the API call.
-
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"
