Batch delete of accounts by IBANs or Client IDs
curl --request DELETE \
--url https://api.vop-sandbox.finventi.com/v1/accounts/ibans \
--header 'Content-Type: application/json' \
--data '
{
"ibans": [
"LT121000011101001000",
"DE89370400440532013000"
]
}
'import requests
url = "https://api.vop-sandbox.finventi.com/v1/accounts/ibans"
payload = { "ibans": ["LT121000011101001000", "DE89370400440532013000"] }
headers = {"Content-Type": "application/json"}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ibans: ['LT121000011101001000', 'DE89370400440532013000']})
};
fetch('https://api.vop-sandbox.finventi.com/v1/accounts/ibans', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vop-sandbox.finventi.com/v1/accounts/ibans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'ibans' => [
'LT121000011101001000',
'DE89370400440532013000'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.vop-sandbox.finventi.com/v1/accounts/ibans"
payload := strings.NewReader("{\n \"ibans\": [\n \"LT121000011101001000\",\n \"DE89370400440532013000\"\n ]\n}")
req, _ := http.NewRequest("DELETE", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.vop-sandbox.finventi.com/v1/accounts/ibans")
.header("Content-Type", "application/json")
.body("{\n \"ibans\": [\n \"LT121000011101001000\",\n \"DE89370400440532013000\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vop-sandbox.finventi.com/v1/accounts/ibans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"ibans\": [\n \"LT121000011101001000\",\n \"DE89370400440532013000\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"deleted_count": 2,
"deleted_ibans": [
"LT121000011101001000",
"DE89370400440532013000"
],
"failed_count": 1,
"failed_entries": {
"iban": "LT121000011101001000",
"reason": "Account not found"
},
"total_count": 3
}{
"detail": "<string>",
"instance": "<string>",
"parameters": {},
"status": {
"reasonPhrase": "<string>",
"statusCode": 123
},
"title": "<string>",
"type": "<string>"
}{
"detail": "<string>",
"instance": "<string>",
"parameters": {},
"status": {
"reasonPhrase": "<string>",
"statusCode": 123
},
"title": "<string>",
"type": "<string>"
}Account Management
Batch delete accounts by IBANs
Deletes multiple accounts using their IBANs.
DELETE
/
v1
/
accounts
/
ibans
Batch delete of accounts by IBANs or Client IDs
curl --request DELETE \
--url https://api.vop-sandbox.finventi.com/v1/accounts/ibans \
--header 'Content-Type: application/json' \
--data '
{
"ibans": [
"LT121000011101001000",
"DE89370400440532013000"
]
}
'import requests
url = "https://api.vop-sandbox.finventi.com/v1/accounts/ibans"
payload = { "ibans": ["LT121000011101001000", "DE89370400440532013000"] }
headers = {"Content-Type": "application/json"}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ibans: ['LT121000011101001000', 'DE89370400440532013000']})
};
fetch('https://api.vop-sandbox.finventi.com/v1/accounts/ibans', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vop-sandbox.finventi.com/v1/accounts/ibans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'ibans' => [
'LT121000011101001000',
'DE89370400440532013000'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.vop-sandbox.finventi.com/v1/accounts/ibans"
payload := strings.NewReader("{\n \"ibans\": [\n \"LT121000011101001000\",\n \"DE89370400440532013000\"\n ]\n}")
req, _ := http.NewRequest("DELETE", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.vop-sandbox.finventi.com/v1/accounts/ibans")
.header("Content-Type", "application/json")
.body("{\n \"ibans\": [\n \"LT121000011101001000\",\n \"DE89370400440532013000\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vop-sandbox.finventi.com/v1/accounts/ibans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"ibans\": [\n \"LT121000011101001000\",\n \"DE89370400440532013000\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"deleted_count": 2,
"deleted_ibans": [
"LT121000011101001000",
"DE89370400440532013000"
],
"failed_count": 1,
"failed_entries": {
"iban": "LT121000011101001000",
"reason": "Account not found"
},
"total_count": 3
}{
"detail": "<string>",
"instance": "<string>",
"parameters": {},
"status": {
"reasonPhrase": "<string>",
"statusCode": 123
},
"title": "<string>",
"type": "<string>"
}{
"detail": "<string>",
"instance": "<string>",
"parameters": {},
"status": {
"reasonPhrase": "<string>",
"statusCode": 123
},
"title": "<string>",
"type": "<string>"
}Body
application/json
Payload containing: ibans: list of IBANs to delete;clientIds: list of Client IDs to delete. Either ibans or clientIds must be provided.
List of IBANs to delete
Minimum array length:
1List of IBANs to delete
Example:
[
"LT121000011101001000",
"DE89370400440532013000"
]
Response
Batch deletion result
Number of IBANs successfully deleted
Example:
2
List of IBANs successfully deleted
List of IBANs successfully deleted
Example:
[
"LT121000011101001000",
"DE89370400440532013000"
]
Number of IBANs that failed to delete
Example:
1
Details of IBANs that failed to delete, with reasons
Show child attributes
Show child attributes
Total number of IBANs submitted for deletion
Example:
3
Last modified on September 26, 2025
⌘I