Item Transfer
Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id:9001/OpenInventory/CreateItemTransfer' \
-H 'accept: text/plain' \
-H 'Authorization: Bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{
"transferType": "STS",
"transferFrom": 453,
"itemTransferDetails": [
{
"storeId": 266,
"supplierBarcode": "XXXXXXXXXXX123.02H-XL",
"qty": 53
},
{
"storeId": 150,
"supplierBarcode": "XXXXXXXXXXX456.12H-XL",
"qty": 15
}
]
}'
- transferType STS (Store to Store) or VTS (Vendor to Store).
- transferFrom If STS, then use the original item store code; if VTS, then write 100.
-
itemTransferDetails :
- storeId destination store code for transfer.
- supplierBarcode item barcode.
- qty quantity of items to be transferred.
Curl
curl -X 'GET' \
'https://openapimcp.matahari.co.id:9001/OpenInventory/GetItemTransferStatusByDo?deliveryOrder=0000000000000' \
-H 'accept: text/plain' \
-H 'Authorization: Bearer putAccessTokenHere'
- deliveryOrder delivery order number.