Skip to content

Commit 93b70fc

Browse files
committed
Trying to make more consistent
1 parent d1c4581 commit 93b70fc

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

v2/specification.md

+18-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Broadcasting a payment before getting a success notification back from the serve
2929
A GET request should be made to payment protcol url.
3030
Example:
3131
* /i/:someinvoiceid
32+
3233
#### Headers
3334
* `Accept` = `application/payment-options`.
3435
* `x-paypro-version` = 2
@@ -123,6 +124,13 @@ A POST request should be made to the payment protocol url with `{chain, currency
123124
* `chain` = a chain that was present in the payment-options response
124125
* `currency` = Optional, the particular currency on the chain you will pay with. Defaults to chain
125126

127+
```JSON
128+
{
129+
"chain": "<chain 3 letter code>",
130+
"currency": "<optional (ERC20) 3 letter code>",
131+
}
132+
```
133+
126134

127135
### Response
128136
#### BTC Response
@@ -249,13 +257,17 @@ Our next step is to generate a funded transaction and send the unsigned version
249257
payment is valid and will be accepted.
250258

251259
### 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
253264

254265
#### Headers
255266
* `Content-Type` = `application/payment-verification`.
256267
* `x-paypro-version` = 2
257268

258269

270+
#### Request Body
259271
```JSON
260272
{
261273
"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
301313
```
302314

303315

304-
## Payment Request
316+
## Payment
305317
Now that the server has told us our payment is acceptable, we can send the fully signed transaction.
306318

307319
### 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
309324

310325
#### Headers
311326
* `Content-Type` = `application/payment-verification`.

0 commit comments

Comments
 (0)