GET api/FleetGetVaps?CustomerId={CustomerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CustomerId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

EstimateVapsModel
NameDescriptionTypeAdditional information
VapId

globally unique identifier

None.

Vap

string

None.

VapAmount

decimal number

None.

IsSelected

boolean

None.

IsMandatory

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "VapId": "ff741b16-7729-4dea-8a3c-8dc0037a5b26",
  "Vap": "sample string 2",
  "VapAmount": 3.1,
  "IsSelected": true,
  "IsMandatory": true
}

application/xml, text/xml

Sample:
<EstimateVapsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuoteEngineDta.FleetModels.Estimate">
  <IsMandatory>true</IsMandatory>
  <IsSelected>true</IsSelected>
  <Vap>sample string 2</Vap>
  <VapAmount>3.1</VapAmount>
  <VapId>ff741b16-7729-4dea-8a3c-8dc0037a5b26</VapId>
</EstimateVapsModel>