Resend OTP
Resend OTP
URI
POST
https://api.tryduplo.com/v1/wallets/v2/resend-payout-otp
Parameters
Header
Body Param
Sample request
curl --location --request POST 'https://api.tryduplo.com/v1/wallets/v2/resend-payout-otp' \
--header 'Authorization: Bearer SECRET_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"business_id" : "15f87763-8b6c-47c2-b1ec-e90574c2c4a9",
"transaction_ref": "tran_i81LURD7sH"
}'
var axios = require('axios');
var data = JSON.stringify({
"business_id" : "15f87763-8b6c-47c2-b1ec-e90574c2c4a9",
"transaction_ref": "tran_i81LURD7sH"
});
var config = {
method: 'post',
url: 'https://api.tryduplo.com/v1/wallets/v2/resend-payout-otp',
headers: {
'Authorization': 'Bearer SECRET_KEY',
'Content-Type': 'application/json'
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.tryduplo.com/v1/wallets/v2/resend-payout-otp',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"business_id" : "15f87763-8b6c-47c2-b1ec-e90574c2c4a9",
"transaction_ref": "tran_i81LURD7sH"
}',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer SECRET_KEY',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Duplo Response
{
"data": {},
"errors": {},
"message": "Payout OTP resent successfully"
}
Last updated