PayPoint
  1. Bill Presentation and Payments - Bill Charges
PayPoint
  • API Access Token
    • Retrieve Access Token
      POST
  • Pre-Paid Airtime Reload
    • Lookup Mobile Number Products
      POST
    • Fetch Airtime Transaction Receipts
      POST
    • Recharge Mobile Number
      POST
    • Fetch Latest Transaction
      POST
    • Lookup Mobile Number Products
      GET
    • Get Airtime Transaction Receipts
      GET
    • Get Transaction
      GET
    • Get Latest Transaction
      GET
    • Get All Products
      GET
    • Get Product Sku By Product ID
      GET
    • Get All Product Skus
      GET
    • Get Product Sku By ID
      GET
    • Get All Products By Operator Id
      GET
    • Get All Products By Country Code
      GET
  • Pay TV Subscription Payments
    • Fetch PayTV Transaction Receipts
      POST
    • Pay TV Subscription
      POST
    • Fetch Latest Pay TV Transaction
      POST
    • Lookup Pay TV Account
      POST
    • Get PayTV Transaction Receipts
      GET
    • Get Pay TV Transaction
      GET
    • Get Latest Pay TV Transaction
      GET
    • Lookup Pay TV Account
      GET
    • Lookup Pay TV Account Copy
      POST
  • Energy Voucher Purchase
    • Fetch Energy Transaction Receipts
      POST
    • Fetch Latest Energy Voucher Transaction
      POST
    • Purchase Energy Voucher
      POST
    • Lookup Energy Bill Payer Account
      POST
    • Get Energy Transaction Receipts
      GET
    • Get Energy Voucher Transaction
      GET
    • Get Latest Energy Voucher Transaction
      GET
    • Lookup Energy Bill Payer Account
      GET
  • Bill Presentation and Payments - Bill Payments
    • Get Customer Paid Bills
    • Pay Bill
    • Pre-Pay Bill Validation
    • Get Payment Details
  • Bill Presentation and Payments - Bill Charges
    • Calculate Bill Charges
      POST
  • Bill Presentation and Payments - Billers
    • Search Billing Company Details
    • Search Billing Company Details
    • Get Billing Company Details By Id
  • Bill Presentation and Payments - Bill Subscription
    • Subscribe to a Bill
    • Cancel Bill Subscription
  • Bill Presentation and Payments - Bill Enquiry
    • Search Bills By Search Criteria
    • Search Bill By Query Parameters
  1. Bill Presentation and Payments - Bill Charges

Calculate Bill Charges

Testing Env
https://sandbox.paypoint.blackkonnect.io/services/blackkonnectpaypointswitch
Testing Env
https://sandbox.paypoint.blackkonnect.io/services/blackkonnectpaypointswitch
POST
https://sandbox.paypoint.blackkonnect.io/services/blackkonnectpaypointswitch
/api/bill-payments/charges/calculate
Maintainer:Not configured
Calculate charges for a bill and fetch total amount.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Bill payment details successfully retrieved after calculating charges.
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox.paypoint.blackkonnect.io/services/blackkonnectpaypointswitch/api/bill-payments/charges/calculate' \
--header 'X-Request-ID: 3d8f0c44-d4c7-4c7b-8a67-78e34b4d947e' \
--header 'X-ServiceAccount-ID: 0e92f7e6-8b2a-11ec-b909-0242ac120002' \
--header 'X-Organisation-ID: d321b5af-6e4b-4e47-87d2-7f7eabc84c5f' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customerId": "750001",
    "billDetails": {
        "currency": "string",
        "id": "1",
        "customerIdWithBiller": "GT5482AB",
        "reference": "C4920F94022",
        "amount": 12.99,
        "minimumAmount": 12.99,
        "maximumAmount": 12.99,
        "dueDate": "2019-08-24",
        "additionalData": [
            {
                "custom-fields": {
                    "property1": "string",
                    "property2": "string"
                }
            }
        ]
    },
    "sourceId": "BRANCH-TELLER"
}'
Response Response Example
200 - Example 1
{
    "paymentAmount": 13.43,
    "percentCustomerCharge": 40,
    "billAmount": 12.99,
    "totalChargeAmount": 0.44,
    "chargeDetails": [
        {
            "chargeCode": "AD",
            "customerChargeAmount": 0.4,
            "originalChargeAmount": 1,
            "taxCode": "VAT",
            "customerTaxAmount": 0.04,
            "originalTaxAmount": 0.1
        }
    ]
}
Modified at 2025-07-10 05:30:41
Previous
Get Payment Details
Next
Search Billing Company Details
Built with