Skip to main content
GET
/
org
/
{org_id}
/
analytics
/
prospects
Get prospect analytics
curl --request GET \
  --url https://v2-nova-api.prod.czmx.in/org/{org_id}/analytics/prospects
{
  "by_country": [
    {
      "count": 123,
      "country": "<string>"
    }
  ],
  "growth": [
    {
      "date": "<string>",
      "new_prospects": 123
    }
  ],
  "period": {
    "end": "<string>",
    "start": "<string>"
  },
  "status_distribution": [
    {
      "count": 123,
      "percentage": 123,
      "status": "<string>"
    }
  ]
}

Path Parameters

org_id
string
required

Organization ID

Query Parameters

start_date
string

Start date (ISO 8601)

end_date
string

End date (ISO 8601)

Response

OK

by_country
object[]
growth
object[]
period
object
status_distribution
object[]