List Users


List the information of internal users, LDAP users, and SSO users of the OU, including the users’ recent login times.

Operation Permissions


Applications assigned with the administrator policy in the OU.

Request Format


GET https://{apigw-address}/enos-iam-service/v2.4/open/user/logintime/list

Request Parameters (URI)


Name Location (Path/Query) Required/Optional Data Type Description
orgId Query Required String The ID of the OU to which the user belongs to. How to get orgId>>
fromTime Query Optional String The starting time of the recent login time range for the user in the format YYYY-MM-DD HH:mm:ss.
toTime Query Optional String The end time of the recent login time range for the user in the format YYYY-MM-DD HH:mm:ss.

Response Parameters


Name Data Type Description
userWithLoginTime Array of User Struct The list of users. For more information, see User Struct.

Samples

Request Sample


url: https://{apigw-address}/enos-iam-service/v2.4/open/user/logintime/list?orgId=yourOrgId
method: GET

Return Sample


{
  "fail": false,
  "userWithLoginTime": [
    {
      "id": "u16xxxxxxxxxxxxxx7",
      "name": "xxxxxx",
      "email": "xxxx@enos.com",
      "phone": "",
      "state": 0,
      "domain": "",
      "authType": 0,
      "phoneArea": "",
      "createTime": "2022-02-25 09:48:59",
      "updateTime": "2022-10-10 03:20:33",
      "description": "",
      "emailVerified": true,
      "lastLoginTime": "2023-12-01 09:51:56",
      "phoneVerified": false,
      "organizationId": "o16xxxxxxxxxxx",
      "passwordExpireTime": 0
    }
  ],
  "success": true,
  "failed": false,
  "message": "",
  "status": 0,
  "successful": true
}