Authorization: Bearer ********************curl --location --request GET '/admin/users-by-month' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "all count users by month",
"data": [
{
"month": "April",
"count": 7
},
{
"month": "May",
"count": 3
},
{
"month": "June",
"count": 1
},
{
"month": "July",
"count": 23
},
{
"month": "August",
"count": 12
}
]
}