I have a basic Time Tracking app with CRUD operations, which is connected to a SQL database. Users create and update records through a form which they can submit.
I'd like to add a feature where, by clicking one button, a user can have all of their Outlook Calendar events pulled for a specific day, which the app will automatically write to a SQL table. The only information I need to capture from these events are the day and duration of the meeting. There should be a unique record for each meeting, e.g. if a user had 5 meetings today, it should create 5 separate records.
I'm not really sure where to start with this though. The purpose of this new feature is to reduce the amount of time it takes for users to log their activities, so I want to automate as much as possible, i.e. there should be no individual forms to go through.
Does anyone have any thoughts?