GET api/Dashboard/GetStatCounts?DealershipID={DealershipID}
Gets Dashboard Stats Count
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
DealershipID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
StatCountName | Description | Type | Additional information |
---|---|---|---|
VehicleCount | integer |
None. |
|
SaleCountLastMonth | integer |
None. |
|
SaleCountCurrentMonth | integer |
None. |
|
SaleCountLastMonthContracted | integer |
None. |
|
SaleCountCurrentMonthContracted | integer |
None. |
|
LeadCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "VehicleCount": 1, "SaleCountLastMonth": 2, "SaleCountCurrentMonth": 3, "SaleCountLastMonthContracted": 4, "SaleCountCurrentMonthContracted": 5, "LeadCount": 6 }
application/xml, text/xml
Sample:
<StatCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DC.Core.Model"> <LeadCount>6</LeadCount> <SaleCountCurrentMonth>3</SaleCountCurrentMonth> <SaleCountCurrentMonthContracted>5</SaleCountCurrentMonthContracted> <SaleCountLastMonth>2</SaleCountLastMonth> <SaleCountLastMonthContracted>4</SaleCountLastMonthContracted> <VehicleCount>1</VehicleCount> </StatCount>