Fetch All Billers

This endpoint allows you to get the list of all the services configured for our B2B platform.

This endpoint can take an optional query string property "groupby" which can have the values of "category" to group the billers to the various products categories or value "billers" to group the services based on the service provider.

/billers/services/list?groupby=category

/billers/services/list?groupby=billers

GET https://payments.baxipay.com.ng/api/baxipay​/billers​/services​/list

Parameters

Header

Authorization string See the authentication page

Responses

  • 200 Returns an array of objects containing the billers category and the individual
    services itemized in an array.

                                                 "epin": [{...service 1}, {...service 2}],
                                                 "epin": [{...service 3}, {...service 4}]
                                                  .....
    
{
  "status": "success",
  "message": "Successful",
  "code": 200,
  "data": {
    "epin": [
      {
        "id": 1,
        "serviceId": "CEA",
        "serviceCode": "001",
        "serviceCategory": "epin",
        "serviceType": "",
        "serviceName": "CFRM Pin",
        "serviceDescription": "",
        "serviceHandler": "CDL",
        "serviceProvider": "",
        "serviceEnabled": "true",
        "serviceStatus": "OK",
        "deployed": "true",
        "created_at": "2019-12-02 09:29:31",
        "updated_at": "2019-12-02 09:29:31"
      },
      ....
    ]
  }