Skip to main content
GET
/
partner
/
v1
/
organizations
/
{organizationId}
/
leads
/
count
Get leads for organization
curl --request GET \
  --url https://www.venturu.com/api/partner/v1/organizations/{organizationId}/leads/count \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "organizationId": 123,
  "organizationName": "<string>",
  "totalLeads": 123,
  "officeBreakdown": [
    {
      "officeId": 123,
      "officeName": "<string>",
      "totalLeads": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string
required

The Venturu ID of the organization to get leads for.

Response

Successful response

status
enum<string>
required

Indicates that the request was successful.

Available options:
success
organizationId
number
required

The Venturu ID of the organization.

organizationName
string
required

The name of the organization.

totalLeads
number
required

The total number of leads for the organization.

officeBreakdown
object[]
required

A breakdown of leads by office within the organization.