taler-docs

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

commit 9339ceac3a570f958593ba25ded5f352887a0450
parent a961cdbb00cbf70b1fa112d6636ba820696b79f5
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed, 20 May 2020 15:01:32 +0530

nexus protocol query

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

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst @@ -340,7 +340,7 @@ Facades List available facades. -.. http:get:: <nexus>/facade/${fcid} +.. http:get:: {nexus}/facade/${fcid} Get details about a facade. @@ -374,6 +374,28 @@ Facades } +Bank Connection Protocols +------------------------- + +.. http:get:: {nexus}/bank-connection-protocols + + List supported bank connection protocols. + +.. http:post:: {nexus}/bank-connection-protocols/ebics/test-host + + Check if the nexus can talk to an EBICS host. + This doesn't create a new connection in the database, + and is useful during setup when the user hasn't entered + the full details for the connection yet. + + .. ts:def:: EbicsHostTestRequest + + interface EbicsHostTestRequest { + ebicsBaseUrl: string; + ebicsHostId: string; + } + + EBICS-specific APIs -------------------