Hello Florian, Currently, Payment Settings tab is not available in the Branch Endpoint ,therefore, this information can not be fetched via the API at this moment. (Exposing Payment Settings Tab is registered in the backlog)
------------------------
When it comes to "Payment Methods" - ScreenID:CA204000
UI Settings 1)Assuming that Financials ERP configured with the desired payment methods. (Bank Account)
2) Customer/Supplier is configured with the specified Payment Method
3) Customer > Customer Payment Method ScreenID:AR303010 where you can enter the values based on your payment method settings (IBAN,Bank Account etc)
API 1) This information can be fetched through, first, looking up to the PaymentDto, {GET:CustomerPayment} in order to get relevant Customer reference/s,
"customer": {
"number": "string",
"name": "string"
},
to get relevant Payment Method reference,
"paymentMethod": {
"id": "string",
"description": "string"
},
and making another GET request to the
/controller/api/v1/customerpaymentmethod/{customerNumber}/{customerPaymentMethodId}
(If you already have the Customer and CustomerPaymentMethod references, first calls can be skipped)
In this way, you can get the details of the registered Customer Payment Method based on the references these have been used in the Customer Payment Document.
Endpoint documentation: https://integration.visma.net/API-index/
... View more