Bills — TV
TV Validation
POST
https://backendapi.sayswitchgroup.com/api/v1/tv/validateThis endpoint validates a TV subscription account using the provided TV service provider and IUC (smartcard) number sent in the request body.
cURL Request Example
cURL
curl -X POST https://backendapi.sayswitchgroup.com/api/v1/tv/validate \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_SECRET_KEY" \
-d '{
"provider": "GOTV",
"number": "2019505346"
}'Example Response
JSON
{
"code": "000",
"content": {
"Customer_Name": "John Doe",
"Status": "Closed",
"Due_Date": "2025-05-27T00:00:00",
"Current_Bouquet": "",
"Current_Bouquet_Price": "",
"Current_Bouquet_Code": "UNKNOWN",
"Renewal_Amount": "11400",
"Customer_Type": "GOTV",
"Customer_Number": "2019505346"
}
}