Skip to main content

Get Merchant Subscriptions

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

note

To query for merchant product subscription details.

Request Parameters:

note

No request parameter is required for this endpoint.

Response Parameters

ParameterTypeDescriptionExample
idUintID is to differentiate which subscription:
1000 : Loyalty & Voucher
1001 : Payment
1002 : Market Place
1003 : Social Media
1001
gracePeriodUintmerchant will terminate after 3 months90
expiryAtDateTimeExpiry date time of merchant"2018-04-28T06:36:08Z"
terminateAtDateTimeTerminate date time of merchant"2018-07-27T23:59:59Z"
statusString"ACTIVE" , "REVIEWING" , "SUSPEND" , "PENDING" , "SUSPEND""ACTIVE"

Example Response

{
"item": [
{
"id": 1001,
"gracePeriod": 90,
"expiryAt": "2018-04-28T06:36:08Z",
"terminateAt": "2018-07-27T23:59:59Z",
"status": "ACTIVE"
},
{
"id": 1000,
"gracePeriod": 90,
"expiryAt": "2018-04-25T02:51:10Z",
"terminateAt": "2018-07-24T23:59:59Z",
"status": "ACTIVE"
},
{
"id": 1003,
"gracePeriod": 90,
"expiryAt": "2018-04-29T05:04:30Z",
"terminateAt": "2018-07-28T23:59:59Z",
"status": "ACTIVE"
}
],
"code": "SUCCESS"
}