taler-docs

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

commit d71d21ec10f9bf32d6958468a6512f55e4db0d5b
parent b35bb74a826d74018f9d5b3ac4856a1abe57c966
Author: MS <ms@taler.net>
Date:   Tue, 26 Jan 2021 16:01:20 +0100

nexus: password change API

Diffstat:
Mlibeufin/api-nexus.rst | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst @@ -72,6 +72,19 @@ User Management password: string; } +.. http:post:: {nexusBase}/users/password + + Change password of a user. The username is extracted from + the HTTP authentication parameters. + + **Request:** + + ..code-block:: ts + + interface UserChangePassword { + newPassword: string; + } + .. http:post:: {nexusBase}/users Create a new user. Only a superuser can call this API.