Skip to main content

Initiate Disbursement

Create a payout request for a Bangladesh and Egypt beneficiary account or wallet.

Applies to: Bangladesh, Egypt

Endpoint

MethodPOST
Path/remittance/{merchantId}/initiateDisbursement
Sandboxhttps://sandbox.simpaisa.com

Request Parameters

ParameterRequiredTypeLengthDescription
customerNameYesVarchar45The customer's name shared by the merchant
customerContactYesVarchar45The customer's contact number (mobile) with country code (e.g. +92, +1, +47)
customerDobNoVarchar25The customer's date of birth, formatted as per ISO 8601
customerGenderNoVarchar10The customer's gender — MALE, FEMALE, or OTHER
customerAccountYesVarchar45The customer's account number (IBAN or wallet) shared for disbursement
destinationBankYesInt4The BankID provided in the bank list
referenceYesVarchar45A unique reference per customer, attached to the bank or wallet account provided by the beneficiary. Used as customerReference in the initiate disbursement request.
amountYesInt11The amount of money to transfer to the recipient
reasonYesVarchar30Purpose of payment or reason for the funds transfer. Pass the code from the provided list.

Response Parameters

ParameterTypeLengthDescription
statusInt4Status of the API call
messageString50Status message of the API call
referenceString45The unique reference of the disbursement provided for registration of remitter and beneficiary
customerReferenceVarchar45An identifier that uniquely identifies each customer
stateVarchar50The state the transaction is currently in

Sample

curl --location 'https://sandbox.simpaisa.com/remittance/{merchantId}/initiateDisbursement' \
--header 'Content-Type: application/json' \
--data-raw '{
"request": {
"customerName": "John Doe",
"customerContact": "923097524712",
"customerEmail": "Johndoe@gmail.com",
"customerDob": "1951-01-01",
"customerGender": "MALE",
"customerAccount": "03079770870",
"destinationBank": "12633",
"reference": "JAZZCASHMC10",
"amount": 5.0,
"reason": "0130"
},
"signature": "OJyUDlenuIf/9sLwSS3YqFKH47rTjpwOP+kogCZq0su6fZP+z+ZdO2qGW6c7r7Ea/SCPMEySxSrWHrjZJKpct7CjxnbykiFNuMT9lGKBEmUVNN1dED5ISuURMifLtOmAiUTG+7W8srM7DEg+M45szjVhZx3XBFpyDYhSH8W90ISh4fUswRpYSLchnqT8kwNDGWXii/ZcI2qkHvddcfqgYffsw08ARM+4k586Ma5PWIPnbDcAHjKXFuDbaGQdPhH1SaSXajBrMSmgWcP5+1nngeDLcCgDfEH4Qu6n3tc5y88LirKZQDcpmsSZv+Tt0tGcW/yTYP00bIrGGSs0wGpB6g=="
}'