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
numberStringRequired. Unique code associated with the TV account.
providerStringRequired. This is the name of the internet provider whose data plans who want information about.

Your request should look like this.

{
  "provider": "string",
  "number": "string"
}

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

{
  "success": true,
  "statusCode": 200,
  "message": "TV validation successful",
  "data": {}
}