Islamic Payment Gateway
  1. Bill
Islamic Payment Gateway
  • Passive Client API
    • Inquiry
      POST
    • Payment
      POST
    • Reversal
      POST
    • Check Status
      POST
  • Active Client API
    • Bill
      • Create New Bill
        POST
      • Get Bill List
        GET
      • Get Bill Information
        GET
      • Revoke Bill
        DELETE
      • Get Bill Payments
        GET
      • Fake/Mock Payment & Reversal
        GET
    • Payment
      • Get Payment List
    • Account
      • Get Account Mutations
    • Institution
      • Institution Account List
      • Institution List
      • Institution Detail
    • Webhook
      • Webhook Call
  • Payment Channel API
    • Inquiry
      POST
    • Payment
      POST
    • Reversal
      POST
  • Authentication
    • OAuth 2.0
      POST
    • Signature
      VIEW
  1. Bill

Get Bill Payments

GET
/api/v2/gw/bill/{bill-hash}/payment
Get bill's payments information

Request

Path Params

Query Params

Header Params

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 GET '/api/v2/gw/bill//payment?institution_code=' \
--header 'Accept;' \
--header 'Authorization;' \
--header 'Signature;'

Responses

🟢200OK
application/json
Body

Example
{
    "rc": "SUCCESS",
    "message": "success",
    "timestamp": "2022-04-04T10:56:20+07:00",
    "data": [
        {
            "id": "string",
            "payment_ref_id": "string",
            "channel": "muamalat",
            "amount": 100000,
            "type": "payment",
            "created_at": "2022-04-04T09:22:38+07:00"
        }
    ]
}
Modified at 2023-10-06 13:22:28
Previous
Revoke Bill
Next
Fake/Mock Payment & Reversal
Built with