taler-docs

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

commit c49d12e22c23bbee4eaa87e842621c90223219d5
parent 0b3aa9fb660c722238dfcaafadcdb0a7926e1a4d
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 26 Sep 2025 14:25:40 +0200

fix #10458

Diffstat:
Mcore/api-donau.rst | 12++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/core/api-donau.rst b/core/api-donau.rst @@ -322,7 +322,7 @@ corresponding charity_id by the Donau. **Response:** :http:statuscode:`200 OK`: - The request was successful, and the response is a `BlindedDonationReceiptSignatures`. + The request was successful, and the response is a `BlindedDonationReceiptSignaturesResponse`. :http:statuscode:`403 Forbidden`: The charity signature is invalid. This response comes with a standard `ErrorDetail` response. :http:statuscode:`404 Not found`: @@ -400,10 +400,14 @@ corresponding charity_id by the Donau. // a 256-bit nonce, converted to Crockford Base32. type BUDIBlindingKeyP = string; - .. ts:def:: BlindedDonationReceiptSignatures + .. ts:def:: BlindedDonationReceiptSignaturesResponse - interface BlindedDonationReceiptSignatures { - blind_signed_receipt_signatures: BlindedDonationReceiptSignature[]; + interface BlindedDonationReceiptSignaturesResponse { + // Total amount over which all the blind signatures are signing. + issued_amount: Amount; + + // Array of the blind signatures. + blind_signatures: BlindedDonationReceiptSignature[]; } .. ts:def:: BlindedDonationReceiptSignature