POST api/Report/DealerNetReport

Request Information

URI Parameters

None.

Body Parameters

DealerNetViewModel
NameDescriptionTypeAdditional information
ViewBySalesRep

boolean

None.

SalesRep

SalesAssociate

None.

State

StateViewModel

None.

StartDate

date

None.

EndDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "viewBySalesRep": true,
  "salesRep": {
    "salesAssociateID": 1,
    "salesAssociateName": "sample string 2"
  },
  "state": {
    "stateID": 1,
    "stateName": "sample string 2",
    "stateAbvr": "sample string 3",
    "countryID": 4
  },
  "startDate": "2025-12-09T23:08:32.1426871-05:00",
  "endDate": "2025-12-09T23:08:32.1426871-05:00"
}

application/xml, text/xml

Sample:
<DealerNetViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameTimeBAL.ViewModels">
  <EndDate>2025-12-09T23:08:32.1426871-05:00</EndDate>
  <StartDate>2025-12-09T23:08:32.1426871-05:00</StartDate>
  <SalesRep>
    <SalesAssociateID>1</SalesAssociateID>
    <SalesAssociateName>sample string 2</SalesAssociateName>
  </SalesRep>
  <State>
    <CountryID>4</CountryID>
    <StateAbvr>sample string 3</StateAbvr>
    <StateID>1</StateID>
    <StateName>sample string 2</StateName>
  </State>
  <ViewBySalesRep>true</ViewBySalesRep>
</DealerNetViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.