User Story
- System should provide options to create virtual money accounts.
- System should allow only admin, super admin to add accounts.
- System should calculate balance based on the credit and debit trasactions.
- Collect Basic Information.
Basic Information Need to be collected
- Bank Name
- Branch
- Account Number
- Account Type (Savings, Current, Fixed)
- Account Holder Name
- Opening Balance
- Account Balance
REST API
JSON Structure
[
{
"id": "string",
"createdAt": "2024-08-01T18:56:29.652Z",
"updatedAt": "2024-08-01T18:56:29.652Z",
"name": "string",
"number": "string",
"bank": "string",
"branch": "string",
"openingBalance": 0,
"accountBalance": 0,
"openingBalanceDate": "2024-08-01T18:56:29.652Z",
"notes": "string",
"isDefault": true
}
]