Bills Payment
Validate tv
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.
Field | Data Type | Description |
---|---|---|
entityNumber | String | Required. Unique code associated with the TV account. |
serviceCategoryId | String | Required. 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"
}
}