GET api/GetDashboardCount?jsonData={jsonData}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonData | string |
Required |
Body Parameters
None.
Response Information
Resource Description
GetDashboardCountVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Leads | integer |
None. |
|
| Open | integer |
None. |
|
| Closed | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Leads": 1,
"Open": 2,
"Closed": 3
}
application/xml, text/xml
Sample:
<GetDashboardCountVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.Dashboard"> <Closed>3</Closed> <Leads>1</Leads> <Open>2</Open> </GetDashboardCountVm>