Stock Opname / Item Take
Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id:9001/OpenInventory/CreateItemTake' \
-H 'accept: text/plain' \
-H 'Authorization: Bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{
"stores": [ 266,150 ],
"brands": [ 6001,6002 ],
"actionDate": "2024-06-08"
}'

  • stores List of store codes that will conduct stocktaking.
  • brands List of brand codes that will undergo stocktaking. If left blank, all brand codes will be selected.
  • actionDate stocktaking date.

Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id:9001/OpenInventory/PostItemTakeResultByToken' \
-H 'accept: text/plain' \
-H 'Authorization: Bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{
"token": "840612345",
"details": [
{
"barcode": "XXXXXXXXXXXX1.03J-T",
"qty": 10
},
{
"barcode": "XXXXXXXXXXXX2.01A-S",
"qty": 20
},
{
"barcode": "XXXXXXXXXXXX3.04C-M",
"qty": 50
}
]}'
  • token item take identification number.
  • details:
    • barcode item bracode.
    • qty quantity resulting from stocktaking.