DELETE api/ordFreightHandling/{id}
Delete a single record from the FreightHandling table.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ordFreightHandlingDb| Name | Description | Type | Additional information |
|---|---|---|---|
| FreightHandlingID | integer |
None. |
|
| OrderID | integer |
Required |
|
| DataVersion | string |
Required |
|
| ServiceCode | integer |
None. |
|
| InputCurrencyCode | string |
Max length: 3 |
|
| InputCharge | decimal number |
Required |
|
| Charge | decimal number |
Required |
|
| PerSkid | boolean |
None. |
|
| TotalCharge | decimal number |
Required |
|
| Comment | string |
Max length: 240 |
|
| CreatedBy | integer |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedBy | integer |
None. |
|
| UpdatedDate | date |
None. |
|
| FBSubChargesWOID | integer |
None. |
|
| results | Collection of ValidationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": null,
"FreightHandlingID": 1,
"OrderID": 2,
"DataVersion": "sample string 3",
"ServiceCode": 1,
"InputCurrencyCode": "sample string 4",
"InputCharge": 5.0,
"Charge": 6.0,
"PerSkid": true,
"TotalCharge": 8.0,
"Comment": "sample string 9",
"CreatedBy": 10,
"CreatedDate": "2025-12-06T23:43:08.2110045+00:00",
"UpdatedBy": 12,
"UpdatedDate": "2025-12-06T23:43:08.2110045+00:00",
"FBSubChargesWOID": 1
}
application/xml, text/xml
Sample:
<ordFreightHandlingDb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
<results xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.ComponentModel.DataAnnotations" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Utility" />
<Charge>6</Charge>
<Comment>sample string 9</Comment>
<CreatedBy>10</CreatedBy>
<CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-06T23:43:08.2110045Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</CreatedDate>
<DataVersion>sample string 3</DataVersion>
<FBSubChargesWOID>1</FBSubChargesWOID>
<FreightHandlingID>1</FreightHandlingID>
<InputCharge>5</InputCharge>
<InputCurrencyCode>sample string 4</InputCurrencyCode>
<OrderID>2</OrderID>
<PerSkid>true</PerSkid>
<ServiceCode>1</ServiceCode>
<TotalCharge>8</TotalCharge>
<UpdatedBy>12</UpdatedBy>
<UpdatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-06T23:43:08.2110045Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</UpdatedDate>
</ordFreightHandlingDb>