Count Accounts
Count the total number of accounts
Count Accounts
GET https://abc.hoola.vn/manage/api/users/count-total-user
Query Parameters
Name
Type
Description
token
string
Account Authentication Account
// Response Code "00". Query successfully.
// Return data:
{
"respCode": "00",
"totalUser": 112,
"msg": "Success"
}// Response Code "02". No token provided.
// Return data:
{
"respCode": "02",
"totalUser": null,
"msg": "No token"
}// Response Code "04". Token is invalid or has expired.
// Return data:
{
"respCode": "04",
"totalUser": null,
"msg": "Invalid token || Token has expired"
}// Response Code "01". Wrong request method.
// Return data:
{
"respCode": "01",
"totalUser": null,
"msg": "Request method should be GET"
}// Response Code "03". Server not able to authenticate your account.
// Return data:
{
"respCode": "03",
"totalUser": null,
"msg": "Server not able to authenticate your account"
}Example:
// GET:
https://abc.hoola.vn/manage/api/users/count-total-user?token=sdhg23797sdbv9186jdvk58Last updated
Was this helpful?