POST api/jobplan/getRemoveShortloadfee?type={type}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

ShortFeeType

Required

Body Parameters

ShortloadFeeRequestDto
NameDescriptionTypeAdditional information
SorderNo

integer

None.

DocketNo

integer

None.

ActualQty

decimal number

None.

CalcQty

decimal number

None.

TruckType

string

None.

Uom

string

None.

DistanceMeters

decimal number

None.

RemoveDriverShortFee

boolean

None.

RemoveShortFee

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "SorderNo": 1,
  "DocketNo": 2,
  "ActualQty": 3.1,
  "CalcQty": 4.1,
  "TruckType": "sample string 5",
  "Uom": "sample string 6",
  "DistanceMeters": 7.0,
  "RemoveDriverShortFee": true,
  "RemoveShortFee": true
}

text/xml

Sample:
<ShortloadFeeRequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Peercore.Transport.Model.RequestModels">
  <ActualQty>3.1</ActualQty>
  <CalcQty>4.1</CalcQty>
  <DistanceMeters>7</DistanceMeters>
  <DocketNo>2</DocketNo>
  <RemoveDriverShortFee>true</RemoveDriverShortFee>
  <RemoveShortFee>true</RemoveShortFee>
  <SorderNo>1</SorderNo>
  <TruckType>sample string 5</TruckType>
  <Uom>sample string 6</Uom>
</ShortloadFeeRequestDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.