Update a virtual account
Update a single-use virtual account
URI
PATCH
https://api.tryduplo.com/v1/virtual-accounts/:account_ref?business_id={BUSINESS_ID}
Parameters
Header
Path Param
Body Param
Sample request
curl --location --request PATCH 'https://api.tryduplo.com/v1/virtual-accounts/:account_ref?business_id={YOUR_VALUE}' \
--header 'Authorization: Bearer SECRET_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"account_name": "John doe",
"provider": "providus"
}'
var axios = require('axios');
var data = JSON.stringify({
"account_name": "John doe",
"provider": "providus"
});
var config = {
method: 'patch',
url: 'https://api.tryduplo.com/v1/virtual-accounts/:account_ref?business_id={YOUR_VALUE}',
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/virtual-accounts/:account_ref?business_id={YOUR_VALUE}',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'PATCH',
CURLOPT_POSTFIELDS =>'{
"account_name": "John doe",
"provider": "providus"
}',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer SECRET_KEY',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Duplo response
{
"data": {
"provider": {
"bank_code": "053",
"bank_name": "Providus",
"id": "providus",
"default": true
},
"email": "alindavdsin@gmail.com",
"phone_number": "08085279945",
"account_ref": "act_jdnusyEcN",
"created_at": "2021-09-28T20:10:07.000Z",
"status": "active",
"account_name": "John doe",
"account_number": "9977658630",
"bvn": "39372746283"
},
"errors": {},
"message": "Request successful"
}
Last updated