commit a27e2e2e44e75bf1d170867dca419107fbe90767
parent 6858672865c646cc377ccc71b86c7b3f67f5b086
Author: Antoine A <>
Date: Fri, 18 Jul 2025 14:30:42 +0200
corebank: improve conversion rate class API
Diffstat:
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/core/api-corebank.rst b/core/api-corebank.rst
@@ -97,6 +97,16 @@ Config
// How the bank SPA should render this currency.
currency_specification: CurrencySpecification;
+ // External currency used during conversion.
+ // Only present if conversion is activated on the server
+ // @since **v9**
+ fiat_currency?: string;
+
+ // How the bank SPA should render this currency.
+ // Only present if conversion is activated on the server
+ // @since **v9**
+ fiat_currency_specification?: CurrencySpecification;
+
// TAN channels supported by the server
supported_tan_channels: TanChannel[];
@@ -695,6 +705,11 @@ Account Management
// @since **v4**, will become mandatory in the next version.
status?: "active" | "locked" | "deleted";
+ // Conversion rate class of the user
+ // Only present if conversion is activated on the server
+ // @since **v9**
+ conversion_rate_class_id?: Integer;
+
// Conversion rate available to the user
// Only present if conversion is activated on the server
// @since **v9**
@@ -783,10 +798,10 @@ Account Management
// @since **v4**, will become mandatory in the next version.
status?: "active" | "locked" | "deleted";
- // Conversion rate available to the user
+ // Conversion rate class of the user
// Only present if conversion is activated on the server
// @since **v9**
- conversion_rate?: ConversionRate;
+ conversion_rate_class_id?: Integer;
}
Transactions