commit 787b55a73ad4612aa07ac3b5947dd8236c1e55e7
parent 1fbddea1b753807a88bc9b0c9a585ea12ccd4227
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Wed, 26 Jan 2022 04:06:21 -0500
add output of ‘libeufin-cli sandbox bankaccount transactions testacct01’ to code-block
Diffstat:
1 file changed, 48 insertions(+), 0 deletions(-)
diff --git a/libeufin/nexus-tutorial.rst b/libeufin/nexus-tutorial.rst
@@ -256,6 +256,54 @@ Payments to a sandbox bank account can be listed as follows:
.. code-block:: console
$ libeufin-cli sandbox bankaccount transactions testacct01
+ {
+ "payments" : [ {
+ "accountLabel" : "testacct01",
+ "creditorIban" : "DE18500105172929531888",
+ "creditorBic" : "INGDDEFFXXX",
+ "creditorName" : "Creditor Name",
+ "debtorIban" : "DE64500105178797276788",
+ "debtorBic" : "DEUTDEBB101",
+ "debtorName" : "Max Mustermann",
+ "amount" : "5",
+ "currency" : "EUR",
+ "subject" : "sample transaction DILWBJHL",
+ "date" : "Wed, 26 Jan 2022 09:03:44 GMT",
+ "creditDebitIndicator" : "credit",
+ "accountServicerReference" : "DILWBJHL",
+ "paymentInformationId" : null
+ }, {
+ "accountLabel" : "testacct01",
+ "creditorIban" : "DE64500105178797276788",
+ "creditorBic" : "DEUTDEBB101",
+ "creditorName" : "Max Mustermann",
+ "debtorIban" : "DE18500105172929531888",
+ "debtorBic" : "INGDDEFFXXX",
+ "debtorName" : "Debitor Name",
+ "amount" : "12",
+ "currency" : "EUR",
+ "subject" : "sample transaction N7JSY17B",
+ "date" : "Wed, 26 Jan 2022 09:03:44 GMT",
+ "creditDebitIndicator" : "debit",
+ "accountServicerReference" : "N7JSY17B",
+ "paymentInformationId" : null
+ }, {
+ "accountLabel" : "testacct01",
+ "creditorIban" : "DE18500105172929531888",
+ "creditorBic" : "INGDDEFFXXX",
+ "creditorName" : "Creditor Name",
+ "debtorIban" : "DE06500105174526623718",
+ "debtorBic" : "INGDDEFFXXX",
+ "debtorName" : "Joe Foo",
+ "amount" : "10.50",
+ "currency" : "EUR",
+ "subject" : "Hello World",
+ "date" : "Wed, 26 Jan 2022 09:04:31 GMT",
+ "creditDebitIndicator" : "credit",
+ "accountServicerReference" : "sandbox-6UI2J3636J9EESXO",
+ "paymentInformationId" : null
+ } ]
+ }
.. note::