I built an application that uses REST apis to inject information into a huge already existing database for a company. The application is a web form that the user fills out. My application then serializes the user's responses into a json that it uses to send post requests to the existent db.
My Django app also is connected to a SQL Server db where it is saving the responses of the user into the fields that I created in my models.py.
Is there a better way to do this? It seems like I'm saving all the information twice! A waste of space.