Disbursement System / Transfer To Bank
  • Introduction
  • API SPECIFICATION
    • Functional Requirement
    • Authentication
    • Merchant Resource
      • Merchant Registration
        • Merchant Registration Request
        • Merchant Registration Complete
      • Merchant Transfer to Other Account
        • Inquiry Merchant Transfer to Other Account
        • Payment Merchant Transfer to Other Account
      • Merchant Transfer To Bank
        • Inquiry Merchant Transfer Out to Bank
        • Payment Merchant Transfer Out to Bank
      • Merchant Disbursement To Bank
        • Inquiry Merchant Disbursement to Bank
        • Payment Merchant Disbursement to Bank
      • Merchant Verify User Name
      • Resend Registration SMS Token
      • Resend Registration E-Mail
      • Check Balance & Status
      • Check History
      • Change Password for Merchant Account
      • Change E-Mail
      • Change Phone Number
        • Change Phone Number Request
        • Change Phone Number Response
    • Log Out
    • Transaction Code
    • Response Code
    • Get List Bank
      • Get List Bank Transfer Out
      • Get List Bank Disbursement
      • Get List Bank BI-Fast
    • List Bank
    • FAQ
Powered by GitBook
On this page
  1. API SPECIFICATION
  2. Merchant Resource
  3. Merchant Transfer To Bank

Payment Merchant Transfer Out to Bank

This service is used to perform IBFT transaction.

Canonical Path

/b2b/merchant/me/ibft/transaction

Method

POST

Authorization

Bearer <user_access_token>

Query Param

-

Content-Type

application/json

Content

{
    “accountSrc”: <String, not null>, 
    “accountDst”: <String, not null>, 
    “amount”: <Double, not null>, 
    “clientRef”: <String, not null>, 
    “description”: <String, not null>, 
    “password”: <String, not null>, 
    “bankId”: <String, not null>, 
    “inquiryId”: <String, not null> 
    "sourceId": <String, not null>
}

Content-Type

application/json

Content

{
    “accountSrcId”: <String, not null>, 
    “accountDstId”: <String, not null>, 
    “amount”: <Double, not null>, 
    “transactionCodeId”: <String, not null>, 
    “accountGroupId”: <String, not null>, 
    “accountGroupName”: <String, not null>, 
    “journalId”: <String, not null>, 
    “clientRef”: <String, not null>, 
    “description”: <String, not null>, 
    “clientTimestamp”: <timestamp, not null>,
    “transactionTimestamp”: <timestamp, not null>, 
    “merchantId”: <String, not null>, 
    “accountSrcName”: <String, not null>, 
    “accountGroupEmail”: <String, not null>, 
    “accountDstName”: <String, not null>, 
    “feeAccountId”: <String>,
    “feeAmount”: <Double>, 
    “feeConfigId”: <String>, 
    “feeTransactionCodeId”: <String>,
    “responseCode”: <String, not null>,
    “correlationId”: <String, not null>,
    “responseMessage”: <String, not null>
}

Description

Field

Description

accountSrcId

Source Account Number

accountDstId

Destination Account Number

amount

Amount

transactionCodeId

Transaction Code Id

accountGroupId

Account Group Id

accountGroupName

Account Group Name

journalId

Journal Id

clientRef

Client Reference Number

description

Description

clientTimestamp

Client Timestamp

transactionTimestamp

Transaction Datetime

merchantId

Merchant Id

accountSrcName

Account Source Name

accountGroupEmail

Account Group Email

accountDstName

Account Destination Name

feeAccountId

Fee Account Id

feeConfigId

Fee Config

feeTransactionId

Fee Transaction Code

feeAmount

Fee Amount

responseCode

Response Code

responseMessage

Response Message

PreviousInquiry Merchant Transfer Out to BankNextMerchant Disbursement To Bank

Last updated 1 year ago