POST api/lead/CountPerUser?userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
Body Parameters
RangeDateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"startDate": "2025-11-03T03:44:32.5833876-05:00",
"endDate": "2025-11-03T03:44:32.5833876-05:00"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AppointmentCountByStatusResponse| Name | Description | Type | Additional 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
}