commit f62f09163c9a96c0fc8071375076fafe781291c6 parent 284a253c727444d01c6bb2ed932c245642059485 Author: ms <ms@taler.net> Date: Tue, 11 Jan 2022 19:32:53 +0100 Bank Access API Diffstat:
| M | core/api-bank-access.rst | | | 8 | +++++--- |
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst @@ -174,7 +174,7 @@ Transactions interface BankAccountTransactionInfo { creditorIban: string; - creditorBic: string; + creditorBic: string; // Optional creditorName: string; debtorIban: string; @@ -185,9 +185,11 @@ Transactions currency: string; subject: string; - date: string; // YYYY-MM-DD - uid: string; // transaction (unique) ID + // Transaction unique ID. Matches + // $transaction_id from the URI. + uid: string; direction: "DBIT" | "CRDT"; + date: string; // YYYY-MM-DD ending with 'Z' }