33 lines
588 B
HTTP
33 lines
588 B
HTTP
# https://www.jetbrains.com/help/idea/http-client-in-product-code-editor.html
|
|
|
|
|
|
### Place an order
|
|
POST http://localhost:8080/orders
|
|
Accept: application/json
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"asset": "BTC",
|
|
"price": 43251.00,
|
|
"amount": 2.0,
|
|
"direction": "SELL"
|
|
}
|
|
|
|
#### Get an order
|
|
GET http://localhost:8080/orders/1
|
|
Accept: application/json
|
|
Content-Type: application/json
|
|
|
|
### Cencel an order
|
|
POST http://localhost:8080/orders/1/cancel
|
|
Accept: application/json
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"asset": "BTC",
|
|
"price": 43251.00,
|
|
"amount": 2.0,
|
|
"direction": "BUY"
|
|
}
|
|
|
|
### |