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 Jumlah data yang dilewati (Offset)
- take Jumlah data yang diminta (Max: 1000 item dalam sekali request)
- brands List brand code, jika kosong atau 0 maka akan menggunakan semua brand code.