Add support documents

Signed-off-by: Mike Rosseel <mike.rosseel@gmail.com>
This commit is contained in:
Mike Rosseel 2017-10-09 16:05:45 +02:00
parent 17b4eefd29
commit 91b5d93bf0
No known key found for this signature in database
GPG Key ID: 1D9920AF2A8E6BF0
2 changed files with 178 additions and 0 deletions

79
api/status.txt Normal file
View File

@ -0,0 +1,79 @@
GET /api/v1/account_list
CODE: OK
DOCS: OK
GET /api/v1/currency_list
CODE: OK
DOCS: OK
GET /api/v1/market_list
CODE: OK
DOCS: OK
GET /api/v1/offer_list
CODE: NOK - filtering is not implemented
DOCS: NOK
GET /api/v1/offer_detail
CODE: OK - could we add checks?
DOCS: OK
DELETE /api/v1/offer_cancel
CODE: OK
DOCS: OK
GET /api/v1/offer_make
CODE: OK - offer is made with missing inputs !
DOCS: OK
GET /api/v1/offer_take
CODE: OK - retest when offer_make is fixed, works with manually made offer
DOCS: OK
GET /api/v1/trade_detail
CODE: OK - move code to proxy?
DOCS: OK
GET /api/v1/trade_list
CODE: OK - no filtering atm.
DOCS: OK
GET /api/v1/payment_started
CODE: OK
DOCS: OK
GET /api/v1/payment_received
CODE: OK
DOCS: OK
GET /api/v1/move_funds_to_bisq_wallet
CODE: OK - needs countdownlatch/error handling
DOCS: OK
GET /api/v1/wallet_detail
CODE: OK - add locked balance
DOCS: OK
GET /api/v1/wallet_addresses
CODE: OK - filtering doesn't work yet
DOCS: OK
GET /api/v1/wallet_tx_list
CODE: OK
DOCS: NOK

View File

@ -0,0 +1,99 @@
{
"variables": [],
"info": {
"name": "Bisq API",
"_postman_id": "62785b56-60f2-9577-2662-ae0402a67c25",
"description": "",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
},
"item": [
{
"name": "Currency_list GET",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"tests[\"Response has LTC\"] = responseBody.has('LTC')"
]
}
}
],
"request": {
"url": "{{url}}/api/v1/currency_list",
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "multipart/form-data",
"description": ""
},
{
"key": "X-CSRF-TOKEN",
"value": "{{csrf_token}}",
"description": ""
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "file",
"description": "",
"type": "file",
"src": "1354475322483.jpg"
}
]
},
"description": ""
},
"response": []
},
{
"name": "Account_list GET",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"tests[\"Status code is 200\"] = responseCode.code === 200;",
"tests[\"Response has LTC\"] = responseBody.has('OKPay')"
]
}
}
],
"request": {
"url": "{{url}}/api/v1/account_list",
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "multipart/form-data",
"description": ""
},
{
"key": "X-CSRF-TOKEN",
"value": "{{csrf_token}}",
"description": ""
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "file",
"description": "",
"type": "file",
"src": "1354475322483.jpg"
}
]
},
"description": ""
},
"response": []
}
]
}