Report Inventory
Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id:9001/OpenReport/StockAdjustment' \
-H 'accept: text/plain' \
-H 'Authorization: bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{
"listAdjustmentNumber": [ 453123123,256123123 ],
"createDate": "2024-06-07",
"adjustmentDate": "2024-06-11"
}'

  • listAdjustmentNumber list of adjustment identification numbers.
  • createDate adjustment creation date.
  • adjustmentDate adjustment date.

Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id:9001/OpenReport/StockMovement' \
-H 'accept: text/plain' \
-H 'Authorization: bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{
"startDate": "2024-06-07",
"endDate": "2024-06-12",
"stores": [ 256,150 ]
}'

  • startDate start date range
  • endDate end date range
  • stores List of store codes; if left blank, all store codes will be selected.

Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id/OpenReport/StockOnHand' \
-H 'accept: text/plain' \
-H 'Authorization: bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{
"stores": ["90","150","157","160"],
"brands": ["6001","6002"]
}'

  • stores List of store codes; if left blank, all store codes will be selected.
  • brands List of brand codes; if left blank, all brand codes will be selected.

Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id:9001/OpenReport/StockOpname' \
-H 'accept: text/plain' \
-H 'Authorization: bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{
"listToken": [ 840112345,840112346 ],
"stoDate": "2024-06-11",
"tokenDate": "2024-06-15"
}'

  • listToken List of unique item take numbers.
  • stoDate stocktaking date.
  • tokenDate date of item take identification number creation.

Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id/OpenReport/StockTransfer' \
-H 'accept: text/plain' \
-H 'Authorization: bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{
"receivedDate": "2024-06-02",
"startDate": "2024-06-01",
"endDate": "2024-06-07",
"orderType": "STS"
}'

  • receivedDate date of goods receipt.
  • startDate start date range.
  • endDate end date range.
  • orderType STS (Store to Store), VTS (Vendor to Store), or ALL for all types of delivery orders.