generated from aura-ascend/template-service
28 lines
481 B
HTTP
28 lines
481 B
HTTP
### Deposit
|
|
POST {{url}}/deposit
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"account": "00000000-0000-0000-0000-000000000000",
|
|
"amount": 1.23
|
|
}
|
|
|
|
### Withdrawal
|
|
POST {{url}}/withdrawal
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"account": "00000000-0000-0000-0000-000000000000",
|
|
"amount": 1
|
|
}
|
|
|
|
### Withdrawal
|
|
POST {{url}}/transfer
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"account": "00000000-0000-0000-0000-000000000000",
|
|
"receiver": "00000000-0000-0000-0000-000000000000",
|
|
"amount": 1
|
|
}
|