Retrieve Transcations

Overview

The merchant initiates an inquiry for a specified date and metaprise returns the bank entry information in real-time.

URL

Production:
https://www.metaprisebanking.com/index/bills/getBankTrans

Sandbox:
https://sandbox-merchant.metaprise.online/index/bills/getBankTrans

Request Object

ObjectTypeDescription
signString(32)MD5 signature
bidString(32)Bid is the account number generated by Metaprise for the merchant. It is a string of 32 bits long to uniquely identify the merchant generated by the system.
start_dateString(10)yyyy-mm-dd
end_dateString(10)yyyy-mm-dd
page_lenInt1~100, Preset value: 20
pageIntPreset value: 1

Response Object

ObjectTypeDescription
resultStringThe result of response: 1. success 2. fail 3. pending
bidString(32)Bid is the account number generated by Metaprise for the merchant. It is a string of 32 bits long to uniquely identify the merchant generated by the system.
total_recordIntTotal number of records
total_pageIntTotal number of pages
page_lenIntNumber of records per page
pageIntCurrent page number
datajson_encodeData content: Arrays
errorStringsucceeded: null; non-null: cause of error.
error_codeStringsucceeded: null; non-null: cause of error.

Data Field Example

[
  {
    "date": "2021-09-25",
    "currency": "USD",
    "amount": "126",
    "account_no": "....8478",
    "remark": "Wire Allen Shoso"
  },
  {
    "date": "2021-09-27",
    "currency": "USD",
    "amount": "525",
    "account_no": "....8478",
    "remark": "Ach Ebay Rxflqqupayments"
  },
  {
    "date": "2021-09-29",
    "currency": "USD",
    "amount": "235",
    "account_no": "....8478",
    "remark": "Incoming Wire Transfer"
  }
]
Language