POST api/lead/CountPerStatus

Appointment by status summary where appointment date is between start and end date provided Total Count Pending Not Status Prospect

Request Information

URI Parameters

None.

Body Parameters

Start date and End Date to use in the Search

RangeDateRequest
NameDescriptionTypeAdditional information
StartDate

date

None.

EndDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "startDate": "2025-04-28T07:44:36.073948-04:00",
  "endDate": "2025-04-28T07:44:36.073948-04:00"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppointmentCountByStatusResponse
NameDescriptionTypeAdditional information
UserId

integer

None.

NotStatus

integer

None.

Pending

integer

None.

Solved

integer

None.

Prospect

integer

None.

Total

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "userId": 1,
  "notStatus": 1,
  "pending": 1,
  "solved": 1,
  "prospect": 1,
  "total": 1
}