Files
silver-octo-spoon/wolverine/a-frame-architecture/FinancialApi/FinancialApi.http
T

27 lines
496 B
HTTP

@FinancialApi_HostAddress = https://localhost:7010
GET {{FinancialApi_HostAddress}}/weatherforecast/
Accept: application/json
### Apply Fee to an Account
POST {{FinancialApi_HostAddress}}/accounts/apply-fee
Accept: application/json
Content-Type: application/json
{
"accountId": 1,
"amount": 5.0
}
### Transfer Between Accounts
POST {{FinancialApi_HostAddress}}/accounts/transfer
Content-Type: application/json
{
"sourceAccountId": 1,
"destinationAccountId": 2,
"amount": 30.00
}