GET api/Dashboard/GetInventoryAgeGroup?DealershipID={DealershipID}

Gets Dashboard Inventory Age Group

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DealershipID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AgeGroup
NameDescriptionTypeAdditional information
PaymentModeID

string

None.

FirstGroup

integer

None.

SecondGroup

integer

None.

ThirdGroup

integer

None.

FourthGroup

integer

None.

FifthGroup

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PaymentModeID": "sample string 1",
    "FirstGroup": 2,
    "SecondGroup": 3,
    "ThirdGroup": 4,
    "FourthGroup": 5,
    "FifthGroup": 6
  },
  {
    "PaymentModeID": "sample string 1",
    "FirstGroup": 2,
    "SecondGroup": 3,
    "ThirdGroup": 4,
    "FourthGroup": 5,
    "FifthGroup": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfAgeGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DC.Core.Model">
  <AgeGroup>
    <FifthGroup>6</FifthGroup>
    <FirstGroup>2</FirstGroup>
    <FourthGroup>5</FourthGroup>
    <PaymentModeID>sample string 1</PaymentModeID>
    <SecondGroup>3</SecondGroup>
    <ThirdGroup>4</ThirdGroup>
  </AgeGroup>
  <AgeGroup>
    <FifthGroup>6</FifthGroup>
    <FirstGroup>2</FirstGroup>
    <FourthGroup>5</FourthGroup>
    <PaymentModeID>sample string 1</PaymentModeID>
    <SecondGroup>3</SecondGroup>
    <ThirdGroup>4</ThirdGroup>
  </AgeGroup>
</ArrayOfAgeGroup>