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

Institution Account List

GET
/api/v2/gw/institution/{institution-code}/account
Institution
Get list of institution accounts

Request

Path Params
institution-code
string 
required
Query Params
bank_code
string 
optional
Bank code
page
number 
optional
Page number of the data you want to display
Header Params
Accept
string 
required
Accept application/json
Authorization
string 
required
Bearer token
Signature
string 
required
request body or query string hash value using HMAC method. algorithm=sha256, key = API_KEY

Request 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/institution//account?bank_code=&page=' \
--header 'Accept;' \
--header 'Authorization;' \
--header 'Signature;'

Responses

🟢200OK
application/json
Body
rc
string 
optional
Default:
SUCCESS
message
string 
optional
Default:
success
timestamp
string 
optional
Example:
2022-04-05T05:18:27+07:00
current_page
number 
optional
Default:
1
data
array [object] 
optional
>= 1 items
You do not have permission to view this reference
from
number 
optional
Default:
1
last_page
number 
optional
Default:
1
per_page
number 
optional
Default:
15
to
number 
optional
Default:
1
total
number 
optional
Default:
1
Example
{
    "rc": "SUCCESS",
    "message": "Success",
    "timestamp": "2022-04-05T05:18:27+07:00",
    "current_page": 1,
    "data": [
        {
            "bank_code": "BMI",
            "account_number": "1234567890",
            "account_holder": "string",
            "balance": 5000000,
            "created_at": "2022-04-05T05:18:26+07:00",
            "updated_at": "2022-04-05T05:18:26+07:00",
            "hash": "nwmp9jNz"
        }
    ],
    "from": 1,
    "last_page": 1,
    "per_page": 15,
    "to": 1,
    "total": 1
}
Previous
Get Account Mutations
Next
Institution List
Built with