summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-12-04 12:52:03 +0100
committerMS <ms@taler.net>2020-12-04 15:00:23 +0100
commite41cdf846de639bbb49ffc01ea830689605bccb2 (patch)
tree2a22ba6cbd8708e7188f4151293231a6bcafe249
parenteb85a8039af31b547b59cd3e4cd64a943ece7d22 (diff)
downloaddocs-e41cdf846de639bbb49ffc01ea830689605bccb2.tar.gz
docs-e41cdf846de639bbb49ffc01ea830689605bccb2.tar.bz2
docs-e41cdf846de639bbb49ffc01ea830689605bccb2.zip
Align specs to code.
-rw-r--r--libeufin/api-sandbox.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst
index d848ba40..a410b9ee 100644
--- a/libeufin/api-sandbox.rst
+++ b/libeufin/api-sandbox.rst
@@ -22,15 +22,28 @@ HTTP API
// IBAN that will receive the payment.
creditorIban: string;
+ // FIXME
+ creditorBic: string;
+ // FIXME
+ creditorName: string;
// IBAN that will send the payment.
debitorIban: string;
+ // FIXME
+ debitorBic: string;
+ // FIXME
+ debitorName: string;
amount: string;
currency: string;
// subject of the payment.
subject: string;
+
+ // Whether the payment is credit or debit *for* the
+ // account being managed *by* the running sandbox.
+ // Can take the values: "CRDT" or "DBIT".
+ direction: string;
}
..