Search
⌃K

Retry payout

Retry payout using transaction reference

URI

POST
https://api.tryduplo.com/v1/wallet/retry-transfer/:transaction_ref

Parameters

Authorization string
set value to Bearer SECRET_KEY

Path Param

transaction_ref string require
Transaction reference.

Sample request

cURL
Node
PHP
curl --location --request GET 'https://api.tryduplo.com/v1/wallets/retry-transfer/tran_cuO9dBVe2MU' \
--header 'Authorization: Bearer SECRET_KEY' \
--header 'Content-Type: application/json' \
1
var axios = require('axios');
2
3
var config = {
4
method: 'get',
5
url: 'https://api.tryduplo.com/v1/wallets/retry-transfer/tran_cuO9dBVe2MU',
6
headers: {
7
'Authorization': 'Bearer SECRET_KEY',
8
'Content-Type': 'application/json'
9
},
10
};
11
12
axios(config)
13
.then(function (response) {
14
console.log(JSON.stringify(response.data));
15
})
16
.catch(function (error) {
17
console.log(error);
18
});
1
<?php
2
3
$curl = curl_init();
4
5
curl_setopt_array($curl, array(
6
CURLOPT_URL => 'https://api.tryduplo.com/v1/wallets/retry-transfer/tran_cuO9dBVe2MU',
7
CURLOPT_RETURNTRANSFER => true,
8
CURLOPT_ENCODING => '',
9
CURLOPT_MAXREDIRS => 10,
10
CURLOPT_TIMEOUT => 0,
11
CURLOPT_FOLLOWLOCATION => true,
12
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
13
CURLOPT_CUSTOMREQUEST => 'GET',
14
CURLOPT_HTTPHEADER => array(
15
'Authorization: Bearer SECRET_KEY',
16
'Content-Type: application/json'
17
),
18
));
19
20
$response = curl_exec($curl);
21
22
curl_close($curl);
23
echo $response;

Duplo Response

{
"data": {},
"errors": {},
"message": "Transactionrequest successful"
}