Verify IUC
Make call to our CableTv verify endpoint to verify your Cable TV IUC
Verify IUC
GET
{{base_url}}/verifycable
Cable Tv Type : GOTV, STARTIMES, DSTV
Headers
Name
Type
Description
authorization*
String
Set value to Bearer PUBLIC_KEY
Request Body
Name
Type
Description
iuc*
String
Decoder number
type*
String
Cable Tv type as shown above
{
"status": true,
"iuc": "2021866824",
"details": {
"status": "ACTIVE",
"custno": 250269344,
"custname": "ADEKUNLE",
"dueDate": "2022-02-14T00:00:00+01:00"
},
"msg": "verified"
}
Take a look at how you might do this:
curl --location --request GET 'https://api.oneappgo.com/v1/verifycable?type=GOTV&iuc=250269344' \
--header 'Authorization: Bearer PUBLIC_KEY'
Sample Response
{
"status": true,
"iuc": "2021866824",
"details": {
"status": "ACTIVE",
"custno": 250269344,
"custname": "ADEKUNLE",
"dueDate": "2022-02-14T00:00:00+01:00"
},
"msg": "verified"
}
Last updated
Was this helpful?