- 🦊一分钟,了解 Apifox !
- 示例项目
- WMS
- 基础服务
- 物料转换
- 入库上架
变更条码货位
POST
/PutOnShelves/changeLocation
请求参数
Body 参数application/json
billId
integer | null
单据ID
inStorageWarehouseId
integer | null
入库仓库ID
inStorageDistrictId
integer | null
入库货区ID
inStorageLocationId
integer | null
入库货位ID
ids
array[integer] | null
单据条码明细ID
示例
{
"billId": 0,
"inStorageWarehouseId": 0,
"inStorageDistrictId": 0,
"inStorageLocationId": 0,
"ids": [
0
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/PutOnShelves/changeLocation' \
--header 'Content-Type: application/json' \
--data-raw '{
"billId": 0,
"inStorageWarehouseId": 0,
"inStorageDistrictId": 0,
"inStorageLocationId": 0,
"ids": [
0
]
}'
返回响应
🟢200成功
application/json
Body
code
string | null
可选
message
string | null
响应描述信息
data
boolean | null
响应结果
示例
{
"code": "",
"message": "",
"data": false
}