syncMaterial.txt
835 Bytes
# ERP物料信息同步
curl --request POST \
--url http://127.0.0.1:8889/wms/api/erp/v2/syncMaterial \
--header 'Accept: */*' \
--header 'Accept-Encoding: gzip, deflate, br' \
--header 'Connection: keep-alive' \
--header 'Content-Type: application/json' \
--header 'Cookie: JSESSIONID=b76dc718-fe80-4711-9b7a-3108e3a47c42' \
--header 'User-Agent: PostmanRuntime-ApipostRuntime/1.1.0' \
--data '{
"masterDataList": [
{
"sku": "MAT001",
"skuName": "测试物料",
"uom": "PCS",
"skuSpec": "规格1",
"altSku": "",
"skuGroup": "",
"productGroup": "",
"packKey": "",
"special": "",
"allowConsolidation": true,
"safetyStock": "0",
"highStock": "0"
}
]
}'