POST api/StockOutNotify
贝业WMS系统出库通知接收接口
Request Information
URI Parameters
None.
Body Parameters
出库单,包括出库明细,具体结构见文档
StockOutNotify| Name | Description | Type | Additional information |
|---|---|---|---|
| details | Collection of StockOutDetailNotify |
None. |
|
| billTypeId | string |
None. |
|
| b_no | string |
Required |
|
| billDate | date |
Required |
|
| store | string |
None. |
|
| client | string |
None. |
|
| note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"details": [
{
"b_no": "sample string 1",
"lineNumber": 2,
"skuCode": "sample string 3",
"batchCode": "sample string 4",
"baseQuantity": 5.0,
"quantity": 6.0,
"expiryDate": "2026-01-17T08:39:31.1340077+08:00",
"preScanned": "sample string 7",
"preScanCust": "sample string 8",
"noteDtl": "sample string 9"
},
{
"b_no": "sample string 1",
"lineNumber": 2,
"skuCode": "sample string 3",
"batchCode": "sample string 4",
"baseQuantity": 5.0,
"quantity": 6.0,
"expiryDate": "2026-01-17T08:39:31.1340077+08:00",
"preScanned": "sample string 7",
"preScanCust": "sample string 8",
"noteDtl": "sample string 9"
}
],
"billTypeId": "sample string 1",
"b_no": "sample string 2",
"billDate": "2026-01-17T08:39:31.1349843+08:00",
"store": "sample string 4",
"client": "sample string 5",
"note": "sample string 6"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
贝业WMS系统出库通知接收接口
ApiResponseOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
|
| Result | string |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 1,
"Result": "sample string 2",
"IsSuccess": true,
"Message": "sample string 4"
}