commit 4327c175ee021d4bdd735ca1a5e3f314795223b0 parent e0c75cec4337972aa36ccf8204f789a73b487e70 Author: Christian Grothoff <christian@grothoff.org> Date: Thu, 9 Oct 2025 12:19:23 +0200 add pay_deadline Diffstat:
| M | core/api-merchant.rst | | | 10 | ++++++++-- |
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -3593,7 +3593,9 @@ Inspecting orders :http:statuscode:`200 OK`: Returns a `MerchantOrderStatusResponse`, whose format can differ based on the status of the payment. :http:statuscode:`404 Not found`: - The order or instance is unknown to the backend. + The order or instance is unknown to the backend. Error code + is set to either ``MERCHANT_GENERIC_ORDER_UNKNOWN`` or + ``MERCHANT_GENERIC_INSTANCE_UNKNOWN``. **Details:** @@ -3691,9 +3693,13 @@ Inspecting orders // URI that the wallet must process to complete the payment. taler_pay_uri: string; - // when was the order created + // Time when the order was created. creation_time: Timestamp; + // Deadline when the offer expires; the customer must pay before. + // @since protocol **v21**. + pay_deadline: Timestamp; + // Order summary text. summary: string;