GET api/ordApproveFeesVw/{id}
Return a single value from the ApproveFeesVw view using the primary key as ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ApproveFeesVw Primary Key. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ordApproveFeesVwDb| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | integer |
Required |
|
| WONumber | integer |
None. |
|
| DatePickedUp | date |
None. |
|
| Forwarder | string |
Max length: 101 |
|
| BillTo | string |
Max length: 100 |
|
| Shipper | string |
Max length: 100 |
|
| Consignee | string |
Max length: 100 |
|
| Status | string |
Required Max length: 11 |
|
| results | Collection of ValidationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": null,
"OrderID": 1,
"WONumber": 1,
"DatePickedUp": "2025-12-06T23:42:09.7789004+00:00",
"Forwarder": "sample string 2",
"BillTo": "sample string 3",
"Shipper": "sample string 4",
"Consignee": "sample string 5",
"Status": "sample string 6"
}
application/xml, text/xml
Sample:
<ordApproveFeesVwDb 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" />
<BillTo>sample string 3</BillTo>
<Consignee>sample string 5</Consignee>
<DatePickedUp xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-06T23:42:09.7789004Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</DatePickedUp>
<Forwarder>sample string 2</Forwarder>
<OrderID>1</OrderID>
<Shipper>sample string 4</Shipper>
<Status>sample string 6</Status>
<WONumber>1</WONumber>
</ordApproveFeesVwDb>