commit 08199f9ded885440918b8230424bf8dc7895a8b5 parent ef283376590c382c5c46d9b9d551b085b14fdb4f Author: Antoine A <> Date: Wed, 20 Mar 2024 17:24:56 +0100 Update corebank API Diffstat:
| M | core/api-corebank.rst | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/core/api-corebank.rst b/core/api-corebank.rst @@ -531,6 +531,14 @@ Account Management // Is 2FA enabled and what channel is used for challenges? tan_channel?: TanChannel; + + // Current status of the account + // active: the account can be used + // deleted: the account has been deleted but is retained for compliance + // reasons, only the administrator can access it + // Default to 'active' is missing + // @since v4, will become mandatory in the next version. + status?: "active" | "deleted"; } Transactions