curl --location 'https://api.nomba.com/v1/bill/cabletv/lookup' \
--header 'accountId: <accountId>' \
--header 'Authorization: <token>'
{
    "code": "00",
    "description": "SUCCESS",
    "data": "John Doe"
}

GET /v1/bill/cabletv/lookup

Query parameters

customerId
string
The identifier of the customer
cableTvType
string
The type of the cable tv provider (typically dstv or gotv)

Response body

code
string
required
Response code
description
string
required
Response description
data
string
required
Data containing customer’s name if present
curl --location 'https://api.nomba.com/v1/bill/cabletv/lookup' \
--header 'accountId: <accountId>' \
--header 'Authorization: <token>'
{
    "code": "00",
    "description": "SUCCESS",
    "data": "John Doe"
}