For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Bills by Category

Endpoint: GET /bill/assigned/byCategoryId/{categoryId}

Description: Retrieves a list of bills associated with a specific category ID.

Authentication: Basic Auth (Username, Password)

Path Parameters:

  • categoryId (required): The ID of the category (e.g., 4 for Electricity - Prepaid).

Response:

  • 200 OK: Returns a JSON array of bill objects.


Sample Implementation

curl --request GET \
  --url 'http://154.113.16.142:9999/provipay/webapi/bill/assigned/byCategoryId/4' \
  --header 'Authorization: Basic <base64-encoded-username:password>'
import requests

headers = {
    'Authorization': 'Basic <base64-encoded-username:password>'
}

response = requests.get('http://154.113.16.142:9999/provipay/webapi/bill/assigned/byCategoryId/4', headers=headers)
if response.status_code == 200:
    print(response.json())
else:
    print(response.reason)
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws Exception {
        URL url = new URL("http://154.113.16.142:9999/provipay/webapi/bill/assigned/byCategoryId/4");
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setRequestMethod("GET");
        conn.setRequestProperty("Authorization", "Basic <base64-encoded-username:password>");

        int responseCode = conn.getResponseCode();
        if (responseCode == 200) {
            BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String inputLine;
            StringBuilder response = new StringBuilder();
            while ((inputLine = in.readLine()) != null) {
                response.append(inputLine);
            }
            in.close();
            System.out.println(response.toString());
        } else {
            System.out.println(conn.getResponseMessage());
        }
    }
}

Example Response:

[
    {
        "bill_id": 7,
        "category_id": "4",
        "description": "Ikeja Electric - DML bill",
        "list_order": "1",
        "name": "Ikeja Electric - IKEDC",
        "source_id": ""
    },
    ...
]

Last updated