Skip to main content

Bank Account Inquiry

POST 

/v2/disbursement/bank-account-inquiry

You can use this endpoint to get the bank account holder name. For now, it still take us a few seconds to do the inquiry. The result will be returned as a callback if we haven’t cached it yet. If it have been cached, you will get the result instantly. Be sure to set up your callback inquiry entry in your Flip for Business Dashboard.

Get balance sequence diagram

Request

Body

required

    account_number stringrequired

    The account number of the bank account

    bank_code stringrequired

    Bank code of the account. Accepted value are listed above

    inquiry_key string

    Inquiry key for handling multiple request with multiple callback

Responses

Expected Response

Schema

    bank_code string

    Bank code of the account

    account_number string

    Account number of the bank account

    account_holder string

    Name of the bank account holder

    status string

    Possible values are:

    • PENDING: Inquiry still in process
    • SUCCESS: Inquiry process is complete and bank account number is valid
    • INVALID_ACCOUNT_NUMBER: Inquiry process is complete but the account number is invalid or maybe a virtual account number
    • SUSPECTED_ACCOUNT: Bank account have been suspected on doing fraud. You still can do a disbursement to this account.
    • BLACK_LISTED: Bank account have been confirmed on doing a fraud and therefore is blacklisted. You can’t do a disbursment to this account
    • FAILED: The inquiry process is failed before we get the final status of the inquiry, e.g due to timeout or any other errors from the bank. If you get this response, please retry the inquiry to trigger reverification of the account.
    • CLOSED: The inquiry process is complete and the account is valid, but it is closed/inactive so that it cannot receive money. You cannot do a disbursement to this account.
    inquiry_key string

    Inquiry key for handling multiple request with multiple callback

Callbacks

POST 

/your-callback-url

If our system has completed the bank account inquiry process, then we will hit the provided URL for the bank inquiry callback. Please make sure that you have set the Bank Account Inquiry callback URL on the Flip for Business dashboard.

Body

    any

Callbacks Responses

Callback Received

Loading...