Leads Count by Status
GET
/leads/status-countRetrieves the count of leads categorized by their statuses. This endpoint helps users understand the distribution of leads across different stages, allowing for better resource allocation and focus on specific groups.
Request
None
Responses
Success(200)
Unauthorized(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
array [object {3}]
required
total_leads
string
required
status
string
required
identifier
string
required
message
string
required
Example
{
"data": [
{
"total_leads": "1",
"status": "Active",
"identifier": "active"
},
{
"total_leads": "0",
"status": "Closed",
"identifier": "closed"
},
{
"total_leads": "0",
"status": "Disputed",
"identifier": "disputed"
}
],
"message": "success"
}
Last modified: 2 months ago