POST api/Warehouse/DispatchWarehouseOrder
Request Information
URI Parameters
None.
Body Parameters
DispatchFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| FromCDate | date |
None. |
|
| ToCDate | date |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| ShipmentId | string |
None. |
|
| MemberId | string |
None. |
|
| OrderId | string |
None. |
|
| Sku | string |
None. |
|
| BarCode | string |
None. |
|
| OrderState | integer |
None. |
|
| Type | integer |
None. |
|
| WarehouseId | globally unique identifier |
None. |
|
| CountryId | string |
None. |
|
| NoteStatus | string |
None. |
|
| PickState | integer |
None. |
|
| GoodMajiShip | integer |
None. |
|
| Paging | Paging |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromCDate": "2026-02-06T17:17:37.9774122+08:00",
"ToCDate": "2026-02-06T17:17:37.9774122+08:00",
"FromDate": "2026-02-06T17:17:37.9774122+08:00",
"ToDate": "2026-02-06T17:17:37.9774122+08:00",
"ShipmentId": "sample string 1",
"MemberId": "sample string 2",
"OrderId": "sample string 3",
"Sku": "sample string 4",
"BarCode": "sample string 5",
"OrderState": 1,
"Type": 1,
"WarehouseId": "bd3ba9b7-b751-4306-82b1-4a4595fe8b18",
"CountryId": "sample string 6",
"NoteStatus": "sample string 7",
"PickState": 1,
"GoodMajiShip": 1,
"Paging": {
"PageSize": 1,
"CurrentPage": 2
}
}
text/xml
Sample:
<DispatchFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<BarCode>sample string 5</BarCode>
<CountryId>sample string 6</CountryId>
<FromCDate>2026-02-06T17:17:37.9774122+08:00</FromCDate>
<FromDate>2026-02-06T17:17:37.9774122+08:00</FromDate>
<GoodMajiShip>1</GoodMajiShip>
<MemberId>sample string 2</MemberId>
<NoteStatus>sample string 7</NoteStatus>
<OrderId>sample string 3</OrderId>
<OrderState>1</OrderState>
<Paging>
<CurrentPage>2</CurrentPage>
<PageSize>1</PageSize>
</Paging>
<PickState>1</PickState>
<ShipmentId>sample string 1</ShipmentId>
<Sku>sample string 4</Sku>
<ToCDate>2026-02-06T17:17:37.9774122+08:00</ToCDate>
<ToDate>2026-02-06T17:17:37.9774122+08:00</ToDate>
<Type>1</Type>
<WarehouseId>bd3ba9b7-b751-4306-82b1-4a4595fe8b18</WarehouseId>
</DispatchFilter>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ReturnDataOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| result | integer |
None. |
|
| code | string |
None. |
|
| msg | string |
None. |
|
| data | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": 1,
"code": "sample string 2",
"msg": "sample string 3",
"data": "sample string 4"
}
text/xml
Sample:
<ReturnDataOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/webapitest.Models"> <code>sample string 2</code> <data>sample string 4</data> <msg>sample string 3</msg> <result>1</result> </ReturnDataOfstring>