Authorization: Bearer ********************curl --location --request GET '/admin/products-services-by-month' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "All products and services count per month",
"data": [
{
"month": "May",
"totalCombined": 333
},
{
"month": "June",
"totalCombined": 582
},
{
"month": "July",
"totalCombined": 1785
},
{
"month": "August",
"totalCombined": 2542
},
{
"month": "September",
"totalCombined": 1866
},
{
"month": "October",
"totalCombined": 3721
},
{
"month": "November",
"totalCombined": 53
}
]
}