Master Data
Curl
curl -X 'GET' \
'https://openapimcp.matahari.co.id:9001/Store/GetStores' \
-H 'accept: */*' \
-H 'Authorization: Bearer putAccessTokenHere'
Curl
curl -X 'GET' \
'https://openapimcp.matahari.co.id:9001/Brand/GetBrandsByUser' \
-H 'accept: */*' \
-H 'Authorization: Bearer putAccessTokenHere'
Curl
curl -X 'POST' \
'https://openapimcp.matahari.co.id:9001/ItemDetail/GetItemDetails' \
-H 'accept: text/plain' \
-H 'Authorization: Bearer putAccessTokenHere' \
-H 'Content-Type: application/json' \
-d '{"filter": {"skip": 0,"take": 100},"brands": [6397,6420]}'

  • skip Number of skipped data (Offset)
  • take Number of requested data (Max: 1000 items per request)
  • brands List of brand codes; if left blank or 0, all brand codes will be used.