Last Updated on : 2023-07-28 06:26:12download
Get the data of registered users in the specified time range on the app. The returned result includes the number of registered users today, the total number of registered users, the date of registration, and the region or country of registration.
GET: /v1.0/iot-datacenter/app/user/register/stat
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
params | String | query | true | JSON |
Description of params
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
bizType | String | false | The user domain. | |
startDay | String | true | The start time. | |
endDay | String | true | The end time. | |
country | String | false | The country or region. | |
dimension | String | false | The dimension. |
Description of dimension
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
country_name | String | false | The country or region. |
Parameter name | Type | Description |
---|---|---|
result | JSONArray | The returned data. |
Description of result
Parameter name | Type | Description |
---|---|---|
todayRegisterNum | Integer | The number of users registered today. |
totalRegisterNum | Integer | The total number of registered users. |
dt | Integer | The date. |
countryName | String | The country or region. |
GET: /v1.0/iot-datacenter/app/user/register/stat?params={"startDay":"20210810" ,"endDay":"20210820","dimension":"country_name","country": "China"}
{
"result": [
{
"totalRegisterNum": 601,
"dt": 20210813,
"countryName": "China",
"todayRegisterNum": 0
},
{
"totalRegisterNum": 601,
"dt": 20210814,
"countryName": "China",
"todayRegisterNum": 0
},
{
"totalRegisterNum": 601,
"dt": 20210815,
"countryName": "China",
"todayRegisterNum": 0
},
{
"totalRegisterNum": 611,
"dt": 20210816,
"countryName": "China",
"todayRegisterNum": 10
},
{
"totalRegisterNum": 616,
"dt": 20210817,
"countryName": "China",
"todayRegisterNum": 5
},
{
"totalRegisterNum": 616,
"dt": 20210818,
"countryName": "China",
"todayRegisterNum": 0
},
{
"totalRegisterNum": 621,
"dt": 20210819,
"countryName": "China",
"todayRegisterNum": 5
},
{
"totalRegisterNum": 621,
"dt": 20210820,
"countryName": "China",
"todayRegisterNum": 0
}
],
"t": 1630117333494,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback