Validate TV

This API lets you check subscription details like account validity and service status.

Endpoint

{{baseurl}}/bill-payment/validate-tv

Method: POST

The API requires a couple of request parameters.

FieldData TypeDescription
entityNumberStringRequired. Unique code associated with the TV account.
serviceCategoryIdStringRequired. This is the id of the electricity provider whose plans you want information about.

Your request should look like this.

{
  "serviceCategoryId": "string",
  "entityNumber": "string"
}

Get that right, and you should get a response like this.

{
  "success": true,
  "statusCode": 200,
  "message": "TV validation successful",
  "data": {
    "status": "success",
    "name": "Owner's name",
    "customernumber": "string"
  }
}