This repository is simple app for transfer money
GET http://localhost:8080/health
0
POST http://localhost:8080/user
{
"name" : "UserName"
}
{
"id": 1,
"name": "UserName",
"cents": 0
}
GET http://localhost:8080/user/{userId}
{
"id": 1,
"name": "UserName",
"cents": 0
}
GET http://localhost:8080/user/all
[
{
"id": 1,
"name": "UserName",
"cents": 0
}
]
PUT http://localhost:8080/user/{userId}/deposit
{
"countCents" : 5000
}
{
"id": 1,
"name": "UserName",
"cents": 5000
}
POST http://localhost:8080/transfer/money/from/{uerId}/to/{userId}
{
"summ" : 1
}
{
"id": 1,
"userFrom": 1,
"userTo": 2,
"summ": 1
}