Hello Florian,
Improvement has been planned to be implemented in version 8.43.0 (06-04-2021), Release Plan & Date may vary. Please subscribe to the "News" section of the community for the following updates. After implementation,
- PUT Branch / Banksettings & GET / PUT Organization Endpoints have been added where you can update Bank information (Branch/Organization > Payment Settings) Planned DTO:
{
"bankName": {
"value": "string"
},
"bankAddress1": {
"value": "string"
},
"bankAddress2": {
"value": "string"
},
"bankAddress3": {
"value": "string"
},
"bankCountry": {
"value": "string"
},
"iban": {
"value": "string"
},
"bban": {
"value": "string"
},
"bbaN2": {
"value": "string"
},
"bbaN3": {
"value": "string"
},
"bic": {
"value": "string"
},
"creditorId": {
"value": "string"
}
}
Organization Endpoint: (Contain Branches) -Branch Endpoint has been modified and a boolean parameter "expandBanksettings" implemented, Bank information will be included in the GET Branch response body when "expandBankSettings = true" GET: ....api/v1/branch?expandBankSettings=true
... View more