Goal of this application is a tool to apply a personal accounts model for finance management. Based on this model, recurring pre-configured transactions can be executed easily, e.g. on a monthly basis. The transactions can either be absolute or relative, e.g. 10% of your monthly income.
Let’s assume we have the following remittance jobs:
-
Transfer 10% of your income to savings - from: DE12345678901234567890 to: DE09876543210987654321
-
Transfer 15% of your income to the credit card - from: DE12345678901234567890 to: 1111********1111
-
Transfer 500 EUR rent to your landlord - from: DE12345678901234567890 to: DE09876543210987654321
{
"dispatch": [
{
"Name": "Savings",
"Share": 10,
"SourceAccount": "DE12345678901234567890",
"TargetAccount": "DE09876543210987654321",
"Remittee": "Mickey Mouse"
},
{
"Name": "Creditcard deposit",
"Share": 15,
"SourceAccount": "DE12345678901234567890",
"TargetAccount": "1111********1111"
},
{
"Name": "House rent",
"ShareValue": 500,
"SourceAccount": "DE12345678901234567890",
"TargetAccount": "DE09876543210987654321",
"Remittee": "Mickey Mouse",
"Description": "Rent May 2019"
}
]
}
Field | Description |
---|---|
Name |
Transaction name. |
Share or ShareValue |
Transaction amount. Either absolute EUR value (ShareValue) or percentage of income (Share). If Share is set, the application asks for the income at the beginning. |
SourceAccount |
Either an IBAN or credit card within your DKB account. This account will be debited. |
TargetAccount |
Either an IBAN or credit card. This account will be credited.
Format IBAN: <Country code><20 digit iban number> - no spaces allowed |
Remittee |
Name of the credited person or company. |
Description |
Transaction purpose line. |