dedovicnermin / BANKINGPROJECT

Real-time payment application. Combines microservices to achieve event-driven functionality.
1 stars 1 forks source link

Check if your transaction was completed successfully #56

Closed dedovicnermin closed 3 years ago

dedovicnermin commented 3 years ago

Rest returns the messageID upon sending transfer request. Use this ID to send another request, in which the bank will confirm wether or not the transfer message has been persisted

dedovicnermin commented 3 years ago

d6161cef4f4280483e7542f9a16c8dc1c1459302 rest will have to call to router and query transfer status using messageId

dedovicnermin commented 3 years ago

c4a7898643544537bb9b437e898659a83757db81 On 2 accounts 1 bank transaction, persistence needs to update the state store

dedovicnermin commented 3 years ago

092dde0a41d7766367001e14506713b9f4f3b544 should handle the state of transfer status store. Ensures that a transfer message status is correct.

REST app has an endpoint that calls out to router for the transfer status.