Inquiry Status

  • Relative URL : /account/api/inquiry_status/< virtual_account >/< trx_no >/< trx_id >

    *trx_id optional, if inquiry without trx_id, use this :

    : /account/api/inquiry_status/< virtual_account >/< trx_no >

And also need to create a signature and use the request header.

Inquiry Payment Status

GET /account/api/inquiry_status/{virtual_account}/{trx_no}/{trx_id}

This service is used by users/merchants to used to check the payment status/fund transfer status of the user/merchant to the fund recipient's account

*trx_id optional, if inquiry without trx_id, use this :

/account/api/inquiry_status/< virtual_account >/< trx_no >

* means the parameter is required

Request Body

NameTypeDescription

virtual_account*

Number

VA merchant

beneficiary_virtual_account*

Number

VA number of beneficiary account

beneficiary_account*

Number

Account number of VA receiver

beneficiary_name

String

Account number name

beneficiary_bank_code*

Number

Beneficiary bank code

beneficiary_bank_name*

String

Beneficiary bank name

trx_id*

Integer

Trx ID of transfer

trx_no*

String

Transaction number from merchant

trx_date*

Datetime

Format Datetime (YYYY-MM-DD H:i:s)

trx_amount*

Integer

Total amount, ex : 10.000 -> 1000000

trx_desc*

String

Description of transaction

trx_reff*

String

Reference of transaction number on system disbursement

callback_url

String

URL for callback/notification, used if the merchant wants the system to notify the merchant.

trx_status_date*

Datetime

Transaction of success date, format datetime (YYYY-MM-DD H:i:s)

bank_response_code*

Integer

Response code for the transaction from the bank

bank_response_msg*

String

Response message of trx from bank

status*

Integer

Status of transaction: 1 = On Process 2 = Success 4 = Failed 5 = Reverse

message*

String

Info status transaction

response_code*

Integer

Response code from bank (00 = success)

response_desc*

String

Response desc from bank

{
    "virtual_account": "9920017573",
    "beneficiary_virtual_account": "9920064307",
    "beneficiary_account": "9998877766",
    "beneficiary_name": "Felicia",
    "beneficiary_bank_code": "022",
    "beneficiary_bank_name": "BANK NIAGA (CIMB)",
    "trx_id": 123456,
    "trx_no": "noffri_20220725T160722",
    "trx_date": "2019-07-01 15:10:00",
    "trx_amount": 4000000,
    "trx_desc": "Transfer trx",
    "trx_reff": "l-NI83mPsRKW4lGtk5iD_1658741480399163",
    "callback_url": "",
    "trx_status_date": "2022-08-08 16:05:26",
    "bank_response_code": "2",
    "bank_response_msg": "Success",
    "status": "2",
    "message": "Success",
    "response_code": "00",
    "response_desc": "success"
}

Last updated