curl -X PATCH "https://heimdall.qa.zoniqx.com/bank-accounts/<id>" \
-H "Authorization: Bearer <accessToken>" \
-H "x-tenant-id: <your-tenant-id>" \
-H "Content-Type: application/json" \
-d '{}'const response = await fetch("https://heimdall.qa.zoniqx.com/bank-accounts/<id>", {
method: "PATCH",
headers: {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
"Content-Type": "application/json",
},
body: JSON.stringify({}),
});
const data = await response.json();type BankAccountController_updateBankAccountResponse = Record<string, unknown>;
const response = await fetch("https://heimdall.qa.zoniqx.com/bank-accounts/<id>", {
method: "PATCH",
headers: {
Authorization: "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
"Content-Type": "application/json",
},
body: JSON.stringify({}),
});
const data: BankAccountController_updateBankAccountResponse = await response.json();import requests
url = "https://heimdall.qa.zoniqx.com/bank-accounts/<id>"
headers = {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
}
payload = {}
response = requests.patch(url, headers=headers, json=payload)
data = response.json()