Get user list
https://api.sciener.com/v3/user/list
1. Description
Name Type Required Description
clientId String Y The app_id which is assigned by system when you create an application
clientSecret String Y The app_secret which is assigned by system when you create an application
startDate Long Y Query start time (0 for no constraint)
endDate Long Y Query end time (0 for no constraint)
pageNo Int Y Page, start from 1
pageSize Int Y Items per page, default 20, max 100
date Long Y Current time (timestamp in millisecond)
2.Response
Parameter Type Description
list JsonObject Record list
pageNo Int Page, start from 1
pageSize Int Items per page, default 20, max 100
pages Int Total pages
total Int Total items

The objects of the returning data
Parameter Type Description
userid String The username which is returned when register a user
regtime Long Register time
3.Example of response
{
    "list": [
        {
            "userid": "mty_18876191902",
            "regtime": 1235545850000,
        }
    ],
    "pageNo":0,
    "pageSize":0,
    "pages":0,
    "total":0
}