POST api/OtherCharges
Request Information
URI Parameters
None.
Body Parameters
OtherChargeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ZIP | string |
None. |
|
| MoveType | string |
None. |
|
| TariffName | string |
None. |
|
| TariffNo | integer |
None. |
|
| BillWeight | integer |
None. |
|
| ValuationWeight | integer |
None. |
|
| PickupDate | date |
None. |
|
| OrgState | string |
None. |
|
| QuoteDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ZIP": "sample string 1",
"MoveType": "sample string 2",
"TariffName": "sample string 3",
"TariffNo": 4,
"BillWeight": 5,
"ValuationWeight": 6,
"PickupDate": "2025-11-06T09:28:34.6725935-05:00",
"OrgState": "sample string 8",
"QuoteDate": "2025-11-06T09:28:34.6725935-05:00"
}
application/xml, text/xml
Sample:
<OtherChargeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Common.Models"> <BillWeight>5</BillWeight> <MoveType>sample string 2</MoveType> <OrgState>sample string 8</OrgState> <PickupDate>2025-11-06T09:28:34.6725935-05:00</PickupDate> <QuoteDate>2025-11-06T09:28:34.6725935-05:00</QuoteDate> <TariffName>sample string 3</TariffName> <TariffNo>4</TariffNo> <ValuationWeight>6</ValuationWeight> <ZIP>sample string 1</ZIP> </OtherChargeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OtherChargeList| Name | Description | Type | Additional information |
|---|---|---|---|
| OtherCharges | Collection of OtherCharge |
None. |
Response Formats
application/json, text/json
Sample:
{
"OtherCharges": [
{
"gcodeno": 1,
"TariffItem": "sample string 2",
"TariffEDI": "sample string 3",
"Description": "sample string 4",
"line": 5,
"Rate": 6.0,
"TariffEDIUnit": "sample string 7",
"Bulky": true,
"Schedule": "sample string 9",
"CountyCode": "sample string 10",
"NoTender": true,
"Item": 12
},
{
"gcodeno": 1,
"TariffItem": "sample string 2",
"TariffEDI": "sample string 3",
"Description": "sample string 4",
"line": 5,
"Rate": 6.0,
"TariffEDIUnit": "sample string 7",
"Bulky": true,
"Schedule": "sample string 9",
"CountyCode": "sample string 10",
"NoTender": true,
"Item": 12
}
]
}
application/xml, text/xml
Sample:
<OtherChargeList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Common.Models">
<OtherCharges>
<OtherCharge>
<Bulky>true</Bulky>
<CountyCode>sample string 10</CountyCode>
<Description>sample string 4</Description>
<Item>12</Item>
<NoTender>true</NoTender>
<Rate>6</Rate>
<Schedule>sample string 9</Schedule>
<TariffEDI>sample string 3</TariffEDI>
<TariffEDIUnit>sample string 7</TariffEDIUnit>
<TariffItem>sample string 2</TariffItem>
<gcodeno>1</gcodeno>
<line>5</line>
</OtherCharge>
<OtherCharge>
<Bulky>true</Bulky>
<CountyCode>sample string 10</CountyCode>
<Description>sample string 4</Description>
<Item>12</Item>
<NoTender>true</NoTender>
<Rate>6</Rate>
<Schedule>sample string 9</Schedule>
<TariffEDI>sample string 3</TariffEDI>
<TariffEDIUnit>sample string 7</TariffEDIUnit>
<TariffItem>sample string 2</TariffItem>
<gcodeno>1</gcodeno>
<line>5</line>
</OtherCharge>
</OtherCharges>
</OtherChargeList>