You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
673 B
35 lines
673 B
4 years ago
|
# You need REST Client extension for VS Code to use this file
|
||
|
# Download at https://aka.ms/vscode/rest-client
|
||
|
|
||
|
GET http://localhost:5000/api/
|
||
|
|
||
|
###
|
||
|
|
||
|
POST http://localhost:5000/api/accounts/
|
||
|
Content-Type: application/x-www-form-urlencoded
|
||
|
|
||
|
user=sinedied¤cy=$&balance=50
|
||
|
|
||
|
###
|
||
|
|
||
|
GET http://localhost:5000/api/accounts/sinedied
|
||
|
|
||
|
###
|
||
|
|
||
|
DELETE http://localhost:5000/api/accounts/sinedied
|
||
|
|
||
|
###
|
||
|
|
||
|
POST http://localhost:5000/api/accounts/sinedied/transactions
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{
|
||
|
"date": "2020-07-24T11:09:17.781Z",
|
||
|
"object": "Bought book",
|
||
|
"amount": -20
|
||
|
}
|
||
|
|
||
|
###
|
||
|
|
||
|
DELETE http://localhost:5000/api/accounts/sinedied/transactions/8825ff3e8331277911174fd1b73ff889
|