📺Cable TV
Note: all requests should have your API Token as a bearer token in authorization header. Content-Type application/json
We have three different services on Cable TV with following Service codes
SN
Service Code
Service Name
1
BPD-NGCA-AQA
DSTV
2
BPD-NGCA-AQC
GOTV
3
BPD-NGCA-AWA
STARTIMES
There are four endpoints involved in Cable TV subscription in the order of Get Price, Account Number Validation, Vend and Transaction Confirmation
Get Price
POST
http://epayment.com.ng/epayment/api/3pcable_prices
Headers
Bearer Token*
String
your-api-token
Request Body
Body*
String
{ "service":"BPD-NGCA-AQA" }
{
// Response
}
Account Validation
POST
http://epayment.com.ng/epayment/api/3pcable_validate
Headers
Bearer Token*
String
your-api-token
Request Body
Body*
String
{ "service":"BPD-NGCA-AQA", "smartcard_number":"10175323 178" }
{
// Response
}
Vend Cable TV
POST
http://epayment.com.ng/epayment/api/3pcable_vend
Headers
Bearer Token*
String
your-api-token
Request Body
Body*
String
{ "service":"BPD-NGCA-AQA", "smartcard_number":"10175323 178", "customer_reference":"221209 38399XYM00", "product_code":"COMPLE36" }
Verify Completed Cable TV Vending
POST
http://epayment.com.ng/epayment/api/3pcable_verify
Headers
Bearer Token*
String
your-api-token
Request Body
Body*
String
{ "customer_reference":"100123" }
{
// Response
}
Last updated