https://api.sciener.com/v3/user/list
List the users registered by cloud API: Register user,this API will not return users registered in Sciener APP.
xxxxxxxxxxcurl --location -g --request GET 'https://api.sciener.com/v3/user/list?clientId=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&clientSecret=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&date=1625025703000&pageNo=1&pageSize=20'| Name | Type | Required | Description |
|---|---|---|---|
| clientId | String | Y | client_id from Create application |
| clientSecret | String | Y | client_secret from Create application |
| startDate | Long | N | query by register time,start time (timestamp in millisecond) |
| endDate | Long | N | query by register time,end time (timestamp in millisecond) |
| pageNo | Int | Y | Page no, start from 1 |
| pageSize | Int | Y | Items per page, max 200 |
| date | Long | Y | Current time (timestamp in millisecond) |
| Parameter | Type | Description |
|---|---|---|
| list | JSONArray | list of records |
| pageNo | Int | Page no, start from 1 |
| pageSize | Int | Items per page, max 200 |
| pages | Int | Total number of pages |
| total | Int | Total number of records |
The objects in the list
| Parameter | Type | Description |
|---|---|---|
| username | String | The prefixed username return by cloud API: User register |
| regtime | Long | Register time(timestamp in milliseconds) |
xxxxxxxxxx{"list": [{"username": "abcd_c042f4db68f23406c6cecf84a7ebb0fe","regtime": 1625019027000,}],"pageNo":1,"pageSize":20,"pages":1,"total":1}