List Bill Categories
Get a list of bill categories supported by Terraswitch.
GET {{BASE_URL}}/v1/corporate/bill-categories
import Axios from 'axios';
// set the api url
const API_URL = `${BASE_URL}/v1/corporate/bill-categories`;
// make request using axios
Axios({
method: "GET",
url: `${API_URL}`,
headers: {
lg: 'en',
ch: 'web'
Authorization: `Bearer ${API_KEY}`,
'Content-Type': 'application/json',
}
}).then((resp) => {
console.log(resp)
}).catch((err) => {
console.log(err)
})
{
"error": false,
"errors": [],
"data": [
{
"category": {
"categoryId": 4,
"name": "Cable TV Subscription",
"subCategory": "",
"mainCategory": ""
},
"label": "cable",
"countryCode": "NG"
},
{
"category": {
"categoryId": 6,
"name": "Power / Electricity Payments",
"subCategory": "",
"mainCategory": ""
},
"label": "utility",
"countryCode": "NG"
},
{
"category": {
"categoryId": 15,
"name": "Betting",
"subCategory": "",
"mainCategory": ""
},
"label": "utility",
"countryCode": "NG"
}
],
"message": "successful",
"status": 200
}
Last updated