summaryrefslogtreecommitdiff
path: root/core/api-merchant.rst
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-21 12:58:13 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-21 12:58:13 +0530
commitb49baa7d84adbc509539b15586680b9e869d89ef (patch)
tree69f4322896ad11e4423cb609cf26f8b37e9af713 /core/api-merchant.rst
parent1e38b5a5d67a9b7b1db7dc9867955b9d369f2e04 (diff)
downloaddocs-b49baa7d84adbc509539b15586680b9e869d89ef.tar.gz
docs-b49baa7d84adbc509539b15586680b9e869d89ef.tar.bz2
docs-b49baa7d84adbc509539b15586680b9e869d89ef.zip
make session_id mandatory in /paid
Diffstat (limited to 'core/api-merchant.rst')
-rw-r--r--core/api-merchant.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 36cc9d81..9ba8baaa 100644
--- 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: