GET api/Dashboard/GetConsignmentOverview?DealershipID={DealershipID}
Gets Dashboard Consignment Overview
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
DealershipID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FloorPlanOverviewName | Description | Type | Additional information |
---|---|---|---|
FPProvider | string |
None. |
|
FPCost | integer |
None. |
|
Vehicles | integer |
None. |
|
TotalAge | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "FPProvider": "sample string 1", "FPCost": 2, "Vehicles": 3, "TotalAge": 4 }, { "FPProvider": "sample string 1", "FPCost": 2, "Vehicles": 3, "TotalAge": 4 } ]
application/xml, text/xml
Sample:
<ArrayOfFloorPlanOverview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DC.Core.Model"> <FloorPlanOverview> <FPCost>2</FPCost> <FPProvider>sample string 1</FPProvider> <TotalAge>4</TotalAge> <Vehicles>3</Vehicles> </FloorPlanOverview> <FloorPlanOverview> <FPCost>2</FPCost> <FPProvider>sample string 1</FPProvider> <TotalAge>4</TotalAge> <Vehicles>3</Vehicles> </FloorPlanOverview> </ArrayOfFloorPlanOverview>