exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit c86b5f8fbf813f87a4137738a05d877f350e26c4
parent f063f667a887b0bc20f569feb09c41c9b3efa433
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun,  7 Jul 2024 10:31:53 +0200

enable kyc-info endpoint

Diffstat:
Msrc/exchange/taler-exchange-httpd.c | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c @@ -1798,6 +1798,12 @@ handle_mhd_request (void *cls, .nargs_is_upper_bound = true }, { + .url = "kyc-info", + .method = MHD_HTTP_METHOD_GET, + .handler.get = &TEH_handler_kyc_info, + .nargs = 1 + }, + { .url = "kyc-webhook", .method = MHD_HTTP_METHOD_POST, .handler.post = &TEH_handler_kyc_webhook_post,