This way your application only needs to provide the functionality to import such a context.
Mixing the Job-API with this API is allowed.
A program should first call AB_Banking_Init to allow AqBanking to load its configuration files and initialize itself.
You need to setup AqBanking before using functions of this group (i.e. accounts must be setup). After that you may call any other function of this group (most likely the program will request a list of managed account via AB_Banking_GetAccounts).
When the program has finished its work it should call AB_Banking_Fini as the last function of AqBanking (just before calling AB_Banking_free).
The following is a small example of how the High Level API might be used. It requests the status (e.g. balance etc) of an account.
TODO: Add example