get https://api.lenco.co/access/v1/bills/products
Get the list of vendors for bill payments.
You can filter this list by the bill payment category.
category is either
airtime
,mobile-data
,cable-tv
, orelectricity
.
Response Schema:
{
"status": boolean,
"message": string,
"data": {
"products": [
{
"id": string,
"name": string,
"vendor": {
"id": string,
"name": string,
},
"amount": {
"type": "fixed" | "range",
"fixed": string | null,
"minimum": string | null,
"maximum": string | null,
},
"customerIdLabel": string,
"category": "airtime" | "mobile-data" | "cable-tv" | "electricity",
"commissionPercentage": string,
}
]
}
}