IHELA OFFICIAL DOCS
  1. Bills Payment
IHELA OFFICIAL DOCS
  • iHela Ryanje Official Docs
  • Merchant Services
    • Introduction
    • Basics
      • oAuth2 Authentication
      • Cashin Payment banks
      • Cashout Payment banks
      • Account Lookup
    • Bills Payment
      • Bills operations flow
      • Bills Init
        POST
      • Bill Status Check
        POST
      • Account Cashin
        POST
  • Banking Services
    • Introduction
    • Ping
      GET
    • Token Refresh
      POST
    • Token request
      POST
    • Account Lookup
      POST
    • Account Balance
      POST
    • Statement
      GET
    • Withdrawal
      POST
    • Deposit
      POST
    • Transaction Status
      POST
    • Transaction fees
      POST
  • Agent Services
    • Introduction
    • Withdrawal by QR Code or Token
    • Ping
      GET
    • Token Refresh
      POST
    • Token request
      POST
    • Account Lookup
      POST
    • Deposit
      POST
    • Withdrawal Validation
      POST
    • Operation Lookup
      POST
    • Transaction Status
      POST
  1. Bills Payment

Bill Status Check

POST
/payments/bill-check/
Last modified:2023-04-21 13:34:10
This endpoint verifies the status of the bill. It will be used to check if a bill has been paid or is still waiting for the customer's validation.

Request

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

Example
{
    "bill_code": "CODE-20230421-W9T6CYW",
    "merchant_reference": "752000",
    "pin_code": "1234"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://127.0.0.1:8081/api/v2/payments/bill-check/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "bill_code": "CODE-20230421-W9T6CYW",
    "merchant_reference": "752000",
    "pin_code": "1234"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "response_code": "00",
    "response_data": {
        "bill_code": "CODE-20230321-JQ4H26F",
        "merchant_reference": "752000",
        "payment_reference": null,
        "status": "Initial"
    },
    "response_message": "Done",
    "success": true
}
Modified at 2023-04-21 13:34:10
Previous
Bills Init
Next
Account Cashin
Built with