curl --location 'https://api.nomba.com/v1/bill/cableTvProduct?cableTvType=dstv' \
--header 'Authorization: Bearer <token>' \
--header 'accountId: <accountId>'
{
    "code": "00",
    "description": "SUCCESS",
    "data": [
        {
            "subScriptionType": "COMPACT",
            "amount": 19000.0
        },
        {
            "subScriptionType": "COMPACT_PLUS",
            "amount": 30000.0
        },
        {
            "subScriptionType": "PREMIUM",
            "amount": 44500.0
        },
        {
            "subScriptionType": "COMPACT_PLUS_EXTRA_VIEW",
            "amount": 36000.0
        },
        {
            "subScriptionType": "PREMIUM_EXTRA_VIEW",
            "amount": 50500.0
        },
        {
            "subScriptionType": "COMPACT_EXTRA_VIEW",
            "amount": 25000.0
        },
        {
            "subScriptionType": "YANGA",
            "amount": 6000.0
        },
        {
            "subScriptionType": "CONFAM",
            "amount": 11000.0
        },
        {
            "subScriptionType": "PADI",
            "amount": 4400.0
        },
        {
            "subScriptionType": "CONFAM_PLUS_EXTRA_VIEW",
            "amount": 17000.0
        },
        {
            "subScriptionType": "YANGA_PLUS_EXTRA_VIEW",
            "amount": 12000.0
        },
        {
            "subScriptionType": "PADI_PLUS_EXTRA_VIEW",
            "amount": 10400.0
        }
    ],
    "message": "SUCCESS"
}

GET /v1/bill/cableTvProduct?cableTvType=dstv

Available Cable TV type:

  1. dstv
  2. gotv
  3. startimes

Response body

code
string
required

Response code

description
string
required

Response description

message
string
required

Response message

data
object[]

List of available subscription plans

curl --location 'https://api.nomba.com/v1/bill/cableTvProduct?cableTvType=dstv' \
--header 'Authorization: Bearer <token>' \
--header 'accountId: <accountId>'
{
    "code": "00",
    "description": "SUCCESS",
    "data": [
        {
            "subScriptionType": "COMPACT",
            "amount": 19000.0
        },
        {
            "subScriptionType": "COMPACT_PLUS",
            "amount": 30000.0
        },
        {
            "subScriptionType": "PREMIUM",
            "amount": 44500.0
        },
        {
            "subScriptionType": "COMPACT_PLUS_EXTRA_VIEW",
            "amount": 36000.0
        },
        {
            "subScriptionType": "PREMIUM_EXTRA_VIEW",
            "amount": 50500.0
        },
        {
            "subScriptionType": "COMPACT_EXTRA_VIEW",
            "amount": 25000.0
        },
        {
            "subScriptionType": "YANGA",
            "amount": 6000.0
        },
        {
            "subScriptionType": "CONFAM",
            "amount": 11000.0
        },
        {
            "subScriptionType": "PADI",
            "amount": 4400.0
        },
        {
            "subScriptionType": "CONFAM_PLUS_EXTRA_VIEW",
            "amount": 17000.0
        },
        {
            "subScriptionType": "YANGA_PLUS_EXTRA_VIEW",
            "amount": 12000.0
        },
        {
            "subScriptionType": "PADI_PLUS_EXTRA_VIEW",
            "amount": 10400.0
        }
    ],
    "message": "SUCCESS"
}