taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 5f6914013ddb7e074d9cbaa170b9e895c43f2081
parent 1fd82382d882ad68dbcbfca5e4c0b797be715326
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue, 19 May 2020 18:43:52 +0530

libeufin docs

Diffstat:
Mlibeufin/api-nexus.rst | 25++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst @@ -292,11 +292,34 @@ to the real bank. the requesting user. -.. http:post:: {nexusBase}/bank-connections +.. http:get:: {nexusBase}/bank-connections List available bank connections. +.. http:get:: {nexusBase}/bank-connections/{connid} + + Get information about one bank connection. + + .. ts:def:: BankConnectionInfo + + interface BankConnectionInfo { + name: string; + + connectionType: string; + + ready: boolean; + + // Did the user review the bank's keys? + bankKeysReviewed: boolean; + } + + +.. http:post:: {nexusBase}/bank-connections/{connid}/connect + + Initialize the connection by talking to the bank. + + EBICS-specific APIs -------------------