POST api/Dashboard/FunnelData?DealershipID={DealershipID}
Gets Dashboard Funnel Data
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DealershipID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FunnelData| Name | Description | Type | Additional information |
|---|---|---|---|
| Customer | integer |
None. |
|
| Appointments | integer |
None. |
|
| Contacted | integer |
None. |
|
| CashSold | integer |
None. |
|
| FinanceSold | integer |
None. |
|
| WholesaleInternalSold | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Customer": 1,
"Appointments": 2,
"Contacted": 3,
"CashSold": 4,
"FinanceSold": 5,
"WholesaleInternalSold": 6
}
application/xml, text/xml
Sample:
<FunnelData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DC.Core.Model"> <Appointments>2</Appointments> <CashSold>4</CashSold> <Contacted>3</Contacted> <Customer>1</Customer> <FinanceSold>5</FinanceSold> <WholesaleInternalSold>6</WholesaleInternalSold> </FunnelData>