POST api/LocalHourlyRates
Request Information
URI Parameters
None.
Body Parameters
LocalHourlyRatesRequestName | Description | Type | Additional information |
---|---|---|---|
TariffNo | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "TariffNo": 1 }
application/xml, text/xml
Sample:
<LocalHourlyRatesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Common.Models"> <TariffNo>1</TariffNo> </LocalHourlyRatesRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LocalHourlyRatesName | Description | Type | Additional information |
---|---|---|---|
VanRegRate | decimal number |
None. |
|
ManRegRate | decimal number |
None. |
|
VanOTRate | decimal number |
None. |
|
ManOTRate | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "VanRegRate": 1.0, "ManRegRate": 2.0, "VanOTRate": 3.0, "ManOTRate": 4.0 }
application/xml, text/xml
Sample:
<LocalHourlyRates xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Common.Models"> <ManOTRate>4</ManOTRate> <ManRegRate>2</ManRegRate> <VanOTRate>3</VanOTRate> <VanRegRate>1</VanRegRate> </LocalHourlyRates>