**Week 2 Completion – Integration Project**
In Week 2, I built an automation workflow connecting multiple applications using APIs and webhooks.
**Applications used**
* Lovable App (Patient Form)
* Make (Automation platform)
* Google Sheets (Database)
* Telegram Bot (Notifications)
**Workflow**
```text
Lovable Patient Form → Make Webhook → Google Sheets → Telegram Bot
```
When a patient record is submitted from the Lovable application, the webhook sends the data to Make. The automation scenario then adds the patient information to Google Sheets and sends a notification message through Telegram.
**API Concept**
The integration works through API communication. The Lovable app sends a POST request containing patient data to the Make webhook, which processes the data and forwards it to the connected services.
**Example data sent**
```json
{
"name": "Hayat",
"age": 14,
"diagnosis": "allergy"
}
```
**Result**
The system successfully:
* Stores patient data automatically in Google Sheets
* Sends real-time notifications to Telegram
* Demonstrates integration between multiple applications through automation
**Supporting Screenshots**
* Make automation scenario
* Telegram notification message
* Patient form submission
* Google Sheets record entry
The integration workflow functions correctly and meets the requirements for Week 2.