commit b49baa7d84adbc509539b15586680b9e869d89ef
parent 1e38b5a5d67a9b7b1db7dc9867955b9d369f2e04
Author: Florian Dold <florian.dold@gmail.com>
Date: Tue, 21 Jul 2020 12:58:13 +0530
make session_id mandatory in /paid
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -957,7 +957,7 @@ Payment processing
.. http:post:: /orders/$ORDER_ID/paid
- Proof that the client previously paid for an order by providing
+ Prove that the client previously paid for an order by providing
the merchant's signature from the `payment response <PaymentResponse>`.
Typically used by the customer's wallet if it receives a request for
payment for an order that it already paid. This is more compact then
@@ -1001,8 +1001,8 @@ Payment processing
// database access).
h_contract: HashCode;
- // Session id for which the payment is proven. Optional.
- session_id?: string;
+ // Session id for which the payment is proven.
+ session_id: string;
}
.. _order-abort: