Skip to main content

Get All Stores

Method : GET
URL : https://open.revenuemonster.my/v3/stores
Sandbox URL : https://sb-open.revenuemonster.my/v3/stores

note
  • To query for ALL stores under a merchant.

  • To implement a pagination cursor, you may use query string: ~/?cursor= < cursor >_

Request Parameters:

note

No request parameter is required for this endpoint.

Response Parameters

ParameterTypeDescriptionExample
itemsObject[]Array of store object(Refer to explanation below)
codeStringSuccessfully call this endpoint. If fail, will return error code object (Refer Appendix 1: Error Codes)"SUCCESS"
metaObjectDatabase object(Refer to explanation below)

Array of store object (items):
ParameterTypeDescriptionExample
idStringStore ID"6170506694335521334"
nameStringStore Name"REVENUE MONSTER"
addressLine1StringStore Address 1"B-5-30, 5th Floor, Block Bougainvillea,"
addressLine2StringStore Address 2"PJU 6A, Lebuhraya SPRINT, 10 Boulevard,"
postCodeStringPostcode of store"47400"
cityStringCity of store"Petaling Jaya"
stateStringState of store"Selangor"
countryStringCountry of store"Malaysia"
countryCodeStringCountry code of store contact number"60"
phoneNumberStringPhone number of store"377334080"
geoLocationObject of [Float]Geo Location (latitude and longitude) of store{"Lat": 3.1349857, "Lng": 101.6136659 }
statusStringCurrent status of store"ACTIVE"
isDefaultStringDefault store of merchant (first store created upon signup)true
createdAtDateTimeCreation date time of store"2018-02-12T08:53:13Z"
updatedAtDateTimeLast update date time of store"2018-02-12T08:53:13Z"

Database object (meta):
ParameterTypeDescriptionExample
countUintCurrent page record1
totalUintTotal record in database1
cursorUintOptional, if pagination exists.1

Example Response

{
"items": [
{
"id": "1662168764176583360",
"name": "Test Store",
"addressLine1": "20, JALAN JASA 38, TAMAN MUTIARA RINI",
"addressLine2": "",
"postCode": "81230",
"city": "BALING",
"state": "KEDAH",
"country": "MALAYSIA",
"countryCode": "60",
"phoneNumber": "12354645547",
"geoLocation": {
"latitude": 0,
"longitude": 0
},
"status": "ACTIVE",
"createdAt": "2018-05-16T08:05:02Z",
"updatedAt": "2018-05-16T08:05:02Z"
},
{
"id": "526742853846521323",
"name": "yussuf",
"addressLine1": "GUGUSAN MELUR",
"addressLine2": "",
"postCode": "47810",
"city": "PETALING JAYA",
"state": "SELANGOR",
"country": "MALAYSIA.",
"countryCode": "60",
"phoneNumber": "176473298",
"geoLocation": {
"latitude": 0,
"longitude": 0
},
"status": "ACTIVE",
"createdAt": "2018-05-27T10:12:25Z",
"updatedAt": "2018-05-27T10:12:25Z"
},
{
"id": "6883264812332703106",
"name": "XXX",
"addressLine1": "",
"addressLine2": "",
"postCode": "",
"city": "",
"state": "",
"country": "",
"countryCode": "",
"phoneNumber": "",
"geoLocation": {
"latitude": 0,
"longitude": 0
},
"status": "ACTIVE",
"createdAt": "2018-05-14T09:26:23Z",
"updatedAt": "2018-05-14T09:26:23Z"
}
],
"code": "SUCCESS",
"meta": {
"count": 3,
"total": 3
}
}