taler-docs

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

commit 1c2178bfb97585e7550388f616e57d005fd6fa47
parent caac5529f95bf7478408e050d781ad49012b537e
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Thu,  8 May 2025 10:45:19 +0200

fix issues in GET /aml/*/legitimizations spec

Diffstat:
Mcore/api-exchange.rst | 19++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/core/api-exchange.rst b/core/api-exchange.rst @@ -6104,6 +6104,23 @@ and freeze or unfreeze accounts suspected of money laundering. this is merely a simple authentication mechanism, the details of the request are not protected by the signature. + :query limit: + *Optional*. takes value of the form ``N (-N)``, so that at + most ``N`` values strictly older (younger) than ``start`` are returned. + Defaults to ``-20`` to return the last 20 entries (before ``start``). + :query offset: + *Optional*. Row number threshold, see ``delta`` for its + interpretation. Defaults to ``INT64_MAX``, namely the biggest row id + possible in the database. + :query h_payto: + *Optional*. Account selector using the *normalized* payto URI. + All matching accounts are returned if this + filter is absent, otherwise only decisions for this account. + :query active: + *Optional*. If set to yes, only return active decisions, if no only + decisions that have been superceeded. Do not give (or use "all") to + see all decisions regardless of activity status. + **Response:** :http:statuscode:`200 Ok`: @@ -6117,7 +6134,7 @@ and freeze or unfreeze accounts suspected of money laundering. interface LegitimizationMeasuresList { // Legitimization measures. - measures: LegitimizationMeasureDetails; + measures: LegitimizationMeasureDetails[]; }