GET api/SingleRateRange/{id}?ManufacturerId={ManufacturerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

ManufacturerId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ApiManufacturerRangeSingleRate
NameDescriptionTypeAdditional information
RangeId

integer

None.

RangeName

string

None.

VehicleId

integer

None.

Price

decimal number

None.

Business

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RangeId": 1,
    "RangeName": "sample string 2",
    "VehicleId": 3,
    "Price": 4.0,
    "Business": true
  },
  {
    "RangeId": 1,
    "RangeName": "sample string 2",
    "VehicleId": 3,
    "Price": 4.0,
    "Business": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfApiManufacturerRangeSingleRate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JetRateManager.Infrastructure.ViewModels.APi">
  <ApiManufacturerRangeSingleRate>
    <Business>true</Business>
    <Price>4</Price>
    <RangeId>1</RangeId>
    <RangeName>sample string 2</RangeName>
    <VehicleId>3</VehicleId>
  </ApiManufacturerRangeSingleRate>
  <ApiManufacturerRangeSingleRate>
    <Business>true</Business>
    <Price>4</Price>
    <RangeId>1</RangeId>
    <RangeName>sample string 2</RangeName>
    <VehicleId>3</VehicleId>
  </ApiManufacturerRangeSingleRate>
</ArrayOfApiManufacturerRangeSingleRate>