Process Payout
Process the payout
URI
POST
https://api.tryduplo.com/v1/wallets/v2/process-transfer
Parameters
Header
Authorization
string
set value to Bearer SECRET_KEY
Body Param
transaction_ref
string
required
The transaction reference
business_id
string
required
Merchant business ID
otp
string
required
Value of OTP received
Sample request
curl --location --request POST 'https://api.tryduplo.com/v1/wallets/v2/process-transfer' \
--header 'Authorization: Bearer SECRET_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"otp": "233434",
"business_id" : "15f87763-8b6c-47c2-b1ec-e90574c2c4a9",
"transaction_ref": "tran_i81LURD7sH"
}'
Duplo Response
{
"data": {},
"errors": {},
"message": "Transaction request successful"
}
Last updated
Was this helpful?