POST api/ScheduleRate
Request Information
URI Parameters
None.
Body Parameters
ScheduleRateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TariffNo | integer |
None. |
|
| Schedule | string |
None. |
|
| Miles | integer |
None. |
|
| Weight | integer |
None. |
|
| GCodeNo | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TariffNo": 1,
"Schedule": "sample string 2",
"Miles": 3,
"Weight": 4,
"GCodeNo": 5
}
application/xml, text/xml
Sample:
<ScheduleRateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Common.Models"> <GCodeNo>5</GCodeNo> <Miles>3</Miles> <Schedule>sample string 2</Schedule> <TariffNo>1</TariffNo> <Weight>4</Weight> </ScheduleRateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
decimal numberResponse Formats
application/json, text/json
Sample:
1.0
application/xml, text/xml
Sample:
<decimal xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</decimal>