POST api/VehicleLoading/InsertVehicleLoadingNoteAsync
Request Information
URI Parameters
None.
Body Parameters
LoadingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LoadingHeaderList | Collection of LoadingHeaderModel |
None. |
|
| LoadingProductList | Collection of Loading_ProductModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoadingHeaderList": [
{
"LoadingDate": "2026-03-29T16:06:15.7607216-07:00",
"Note": "sample string 2",
"WarehouseCode": "sample string 3",
"VehicleNo": "sample string 4",
"InsertUser": "sample string 5",
"InsertDate": "2026-03-29T16:06:15.7607216-07:00"
},
{
"LoadingDate": "2026-03-29T16:06:15.7607216-07:00",
"Note": "sample string 2",
"WarehouseCode": "sample string 3",
"VehicleNo": "sample string 4",
"InsertUser": "sample string 5",
"InsertDate": "2026-03-29T16:06:15.7607216-07:00"
}
],
"LoadingProductList": [
{
"ProductCode": "sample string 1",
"Qty": 2.0
},
{
"ProductCode": "sample string 1",
"Qty": 2.0
}
]
}
application/xml, text/xml
Sample:
<LoadingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataSynchronization.Models">
<LoadingHeaderList>
<LoadingHeaderModel>
<InsertDate>2026-03-29T16:06:15.7607216-07:00</InsertDate>
<InsertUser>sample string 5</InsertUser>
<LoadingDate>2026-03-29T16:06:15.7607216-07:00</LoadingDate>
<Note>sample string 2</Note>
<VehicleNo>sample string 4</VehicleNo>
<WarehouseCode>sample string 3</WarehouseCode>
</LoadingHeaderModel>
<LoadingHeaderModel>
<InsertDate>2026-03-29T16:06:15.7607216-07:00</InsertDate>
<InsertUser>sample string 5</InsertUser>
<LoadingDate>2026-03-29T16:06:15.7607216-07:00</LoadingDate>
<Note>sample string 2</Note>
<VehicleNo>sample string 4</VehicleNo>
<WarehouseCode>sample string 3</WarehouseCode>
</LoadingHeaderModel>
</LoadingHeaderList>
<LoadingProductList>
<Loading_ProductModel>
<ProductCode>sample string 1</ProductCode>
<Qty>2</Qty>
</Loading_ProductModel>
<Loading_ProductModel>
<ProductCode>sample string 1</ProductCode>
<Qty>2</Qty>
</Loading_ProductModel>
</LoadingProductList>
</LoadingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.