Skip to main content

Account Number Enquiry

/AccountProxyEnquiryRequest

Method : POST
URL : https://xxx.finexusgroup.com/rpg/v1/AccountProxyEnquiryRequest

info

This API call sends an enquiry request to RPG to enquire the recipient account information via account number. Account enquiry response will be sending back to the partner. Partner shall check the transaction status txnSts to ensure no error on the request.

Mandatory / Conditional Fields

Field NameTypeLengthDescriptionExample
txnTypeString (Numeric)3Transaction type."510" - Account resolution enquiry
sndrIDString19Sender identification."FNXSMYNX"
sndrIDTypeString1Sender identification type."0" – Primary Account Number,
"1" – LOC Account Number,
"2" – Unique Reference Number (URN),
"3" – Merchant ID (MID)
rcvrBICString8Beneficiary BIC. Appendix 4"RPPEMYKL"
sndrRefNoString35Sender reference number."FNXS00000001"
sndrLocalTxnTimeString14Local transaction time."20220505103425"
sndrDeviceTypeString2Sender device type."01" – Server,
"02" – Mobile,
"03" – Self-service Kiosk
sndrDeviceVerString20Sender application version number."1.0.35"
catPurpString4Conditional field
Category purpose.
"CASH" - Cash,
"CCRD" - Credit Card,
"LOAN" - Loan
currCodeString3Conditional field
Currency code.
"MYR"
txnAmtString (Numeric)18,2Conditional field
Transaction amount.
"1000.00"
cdtrAgtBICString8Conditional field
Creditor/receiver agent BIC. Appendix 4
"PBBEMYKL"
cdtrAcctString34Conditional field
Creditor/receiver account number.
"73534278991"
cdtrAcctTypeString4Conditional field
Creditor/receiver account proprietary.
"CACC" - Current Account,
"SVGS" - Savings Account,
"CCRD" - Credit Card,
"LOAN" - Loan Account,
"DFLT" - Either Savings or Current Account
rcptRefString140Conditional field
Recipient reference entered by customer.
"20201102REF0001"
duitNowIDTypeString4Conditional field
DuitNow identification type.
"NRIC" - NRIC Number,
"PSPT" - Passport Number,
"BREG" - Business Registration Number,
"MBNO" - Mobile Number,
"ARMN" - Army Number
duitNowIDString140Conditional field
DuitNow identification.
"0127461835"
signatureString999Signature of the message in Base64 format."..."
Optional Fields
Field NameTypeLengthDescriptionExample
pymtDescString140Other payment description."Transfer via account"
ipAddrString100Sender IP Address."192.0.0.1"

Example Message

Account Enquiry Request
curl -X POST "https://xxx.finexusgroup.com/rpg/v1/AccountProxyEnquiryRequest" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"message": {
"txnType":"510",
"sndrID":"FNXSMYNX",
"sndrIDType":"2",
"rcvrBIC":"RPPEMYKL",
"sndrRefNo":"FNXS00000001",
"sndrLocalTxnTime":"20220505104518",
"sndrDeviceType":"01",
"sndrDeviceVer":"1.0.35",
"catPurp":"CASH",
"currCode":"MYR",
"txnAmt":1000.00,
"cdtrAgtBIC":"PBBEMYKL",
"cdtrAcct":"73534278991",
"cdtrAcctType":"SVGS",
"rcptRef":"20201102REF0001",
"pymtDesc":"Transfer via account",
"ipAddr":"192.0.0.1"
},
"signature":"..."
}'