summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--integration-bank.rst15
1 files changed, 13 insertions, 2 deletions
diff --git a/integration-bank.rst b/integration-bank.rst
index d8e17a9f..4ebf2f11 100644
--- a/integration-bank.rst
+++ b/integration-bank.rst
@@ -31,8 +31,8 @@ As a result of the reserve creation request, the following steps will happen in
communicates the desired amount, the reserve's public key and the mint base URL to the
bank
4. Upon successful resolution of the CAPTCHA by the user, the bank initiates the reserve
- creation according to the gotten parameters.
-
+ creation according to the gotten parameters. Together with `200 OK` status code sent back
+ to the wallet, it gets also a `ReserveCreated`_ object.
Note that the reserve creation can be done by a SEPA wire transfer or some other means,
depending on the user's bank and chosen mint.
@@ -63,3 +63,14 @@ The event data must be a `CreateReserveDetail`_:
// mint
callback_url: string;
}
+
+.. _ReserveCreated:
+.. code-block:: tsref
+
+ interface ReserveCreated {
+
+ // A URL informing the user about the succesfull outcome
+ // of his operation
+ redirect_url: string;
+
+ }