summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/api-corebank.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/api-corebank.rst b/core/api-corebank.rst
index afab932c..ec1d23d2 100644
--- 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