Skip to main content

monthly-glance

/v2/private/user/salesManager/monthly-glance?month=November

Available Methods​

  • GET

GET /v2/private/user/salesManager/monthly-glance?month=November​

This API endpoint retrieves a monthly report for the Manager and Counselors.

Params​

ParamTypeDescription
monthStringThe month name

Returns​

The object will have a full month report for the leads and the manager with earnings.

Example return object report
data:{
"teamGlance": {
"glance": {
"cemetryPlans": 5,
"qoutes": 2,
"qoutesAndContract": 2,
"applications": 0
},
"totalMonthlyEarnings": 1010
},
"managerReport": {
"glance": {
"monthlyPlan": 1,
"semiAnnualPlan": 0,
"cemetryPlans": 0,
"qoutes": 1,
"qoutesAndContract": 1,
"applications": 0
},
"totalEarnings": 540
},
"counselorsReport": [
{
"glance": {
"cemetryPlans": 5,
"qoutes": 0,
"qoutesAndContract": 0,
"applications": 0
},
"totalMonthlyEarnings": 0,
"name": {
"first": "sales test14",
"last": "test"
}
},
{
"glance": {
"cemetryPlans": 0,
"qoutes": 1,
"qoutesAndContract": 1,
"applications": 0
},
"totalMonthlyEarnings": 470,
"name": {
"first": "sales test13",
"last": "test"
}
}
]
}