@@ -29,6 +29,7 @@ Broadcasting a payment before getting a success notification back from the serve
29
29
A GET request should be made to payment protcol url.
30
30
Example:
31
31
* /i/: someinvoiceid
32
+
32
33
#### Headers
33
34
* ` Accept ` = ` application/payment-options ` .
34
35
* ` x-paypro-version ` = 2
@@ -123,6 +124,13 @@ A POST request should be made to the payment protocol url with `{chain, currency
123
124
* ` chain ` = a chain that was present in the payment-options response
124
125
* ` currency ` = Optional, the particular currency on the chain you will pay with. Defaults to chain
125
126
127
+ ``` JSON
128
+ {
129
+ "chain" : " <chain 3 letter code>" ,
130
+ "currency" : " <optional (ERC20) 3 letter code>" ,
131
+ }
132
+ ```
133
+
126
134
127
135
### Response
128
136
#### BTC Response
@@ -249,13 +257,17 @@ Our next step is to generate a funded transaction and send the unsigned version
249
257
payment is valid and will be accepted.
250
258
251
259
### Request
252
- A POST request should be made to the i/: invoiceid payment protocol url. A JSON format body should be included with the following fields:
260
+ A POST request should be made to the payment protocol url.
261
+
262
+ #### Examples:
263
+ * /i/: someinvoiceid
253
264
254
265
#### Headers
255
266
* ` Content-Type ` = ` application/payment-verification ` .
256
267
* ` x-paypro-version ` = 2
257
268
258
269
270
+ #### Request Body
259
271
``` JSON
260
272
{
261
273
"chain" : " <chain 3 letter code>" ,
@@ -301,11 +313,14 @@ A POST request should be made to the i/:invoiceid payment protocol url. A JSON f
301
313
```
302
314
303
315
304
- ## Payment Request
316
+ ## Payment
305
317
Now that the server has told us our payment is acceptable, we can send the fully signed transaction.
306
318
307
319
### Request
308
- A POST request should be made to /i/: invoiceid
320
+ A POST request should be made to the payment protocol url with ` {chain, transactions, currency} `
321
+
322
+ #### Examples:
323
+ * /i/: someinvoiceid
309
324
310
325
#### Headers
311
326
* ` Content-Type ` = ` application/payment-verification ` .
0 commit comments