summaryrefslogtreecommitdiff
path: root/api-bank.rst
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2017-12-07 16:52:14 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2017-12-07 16:52:14 +0100
commit1e96d36dfe38e4d72f239d0640117de37c3dcd18 (patch)
tree655a665608e2f831e42464cc7a5711b8c7071ad8 /api-bank.rst
parenta6202bbdee8fe8131c12c62193aca8f9a788f0b7 (diff)
downloaddocs-1e96d36dfe38e4d72f239d0640117de37c3dcd18.tar.gz
docs-1e96d36dfe38e4d72f239d0640117de37c3dcd18.tar.bz2
docs-1e96d36dfe38e4d72f239d0640117de37c3dcd18.zip
fix rendering
Diffstat (limited to 'api-bank.rst')
-rw-r--r--api-bank.rst19
1 files changed, 11 insertions, 8 deletions
diff --git a/api-bank.rst b/api-bank.rst
index ba8af776..b7f81c91 100644
--- a/api-bank.rst
+++ b/api-bank.rst
@@ -131,18 +131,21 @@ request.
:query row_id: row identifier of the transaction that should be cancelled.
:query account_number: bank account for which the incoming transfer was made and for which `auth` provides the authentication data. *Currently ignored*, as multiple bank accounts per user are not implemented yet.
- interface BankCancelRequest {
+ .. _BankCancelRequest:
+ .. code-block:: tsref
- // Authentication method used
- auth: BankAuth;
+ interface BankCancelRequest {
- // The row id of the wire transfer to cancel
- row_id: number;
+ // Authentication method used
+ auth: BankAuth;
- // The recipient's account identificator
- credit_account: number;
+ // The row id of the wire transfer to cancel
+ row_id: number;
- }
+ // The recipient's account identificator
+ credit_account: number;
+
+ }
**Response** In case of an error, the body is a `BankError`_ object.