Last .md style improvement

This commit is contained in:
MG-ng 2021-09-28 20:30:28 +02:00 committed by Overtorment
parent d5fb16b074
commit 661248702d

View File

@ -70,9 +70,9 @@ Response is always JSON.
`error:true` should be always present. `error:true` should be always present.
{ {
"error" : true, // boolean "error" : true, // boolean
"code" : 1, // int "code" : 1, // int
"message": "..." // string "message": "..." // string
} }
Error code | Error message Error code | Error message
@ -113,8 +113,8 @@ Authorize user with Oauth user and login
Request: Request:
{ {
"login": "...", //string "login": "...", // string
"password": "..." //string "password": "..." // string
} }
Response: Response:
@ -356,14 +356,14 @@ Get successful lightning and btc transactions user made. Order newest to oldest.
Request: Request:
{ {
"limit" : 10, // INT "limit" : 10, // INT
"offset": 0, // INT "offset": 0, // INT
} }
Response: Response:
{ {
[ // array of Transaction object (see below) [ // array of Transaction object (see below)
{ {
... ...
} }