🔗 n8n Cloud Webhook Tester
Test live n8n Cloud webhook endpoints with realistic appointment data
n8n Cloud Connection
https://vrim.app.n8n.cloud
Appointment Booking (Main)
https://vrim.app.n8n.cloud/webhook/appointment-booked
{
"patientId": "PAT_001",
"patientName": "John Doe",
"patientEmail": "john.doe@email.com",
"patientPhone": "+353871234567",
"appointmentTime": "2025-01-30T14:30:00Z",
"appointmentType": "consultation",
"doctorId": "DOC_001",
"clinicLocation": "Hospital-01 Main",
"duration": 30,
"priority": "normal",
"isNewPatient": false
}
Patient Response Handler
https://vrim.app.n8n.cloud/webhook/patient-response
{
"From": "+353871234567",
"Body": "YES",
"MessageSid": "MSG_12345",
"patientId": "PAT_001",
"appointmentId": "APT_001",
"responseType": "confirmation"
}
Hospital-01 Appointment
https://vrim.app.n8n.cloud/webhook/hospital-01-appointment-booked
{
"patientId": "HOSP01_PAT_001",
"patientName": "Mary O'Sullivan",
"patientEmail": "mary.osullivan@email.ie",
"patientPhone": "+353871234567",
"appointmentTime": "2025-01-30T09:30:00Z",
"appointmentType": "cardiology_consultation",
"consultantId": "HOSP01_CARD_001",
"department": "Cardiology",
"location": "Hospital-01 Cardiology Wing",
"medicalRecordNumber": "MRN123456",
"insuranceDetails": "VHI Plan B",
"riskFactors": ["diabetes", "hypertension"],
"preferredLanguage": "en"
}
Hospital-01 Messaging
https://vrim.app.n8n.cloud/webhook/hospital-01-messaging-trigger
{
"messageType": "appointment_reminder",
"patientId": "HOSP01_PAT_001",
"appointmentId": "HOSP01_APT_001",
"messageChannels": ["sms", "email"],
"reminderTime": "24_hours_before",
"language": "en",
"urgency": "normal",
"includeDirections": true
}
Emergency Contact
https://vrim.app.n8n.cloud/webhook/emergency-contact
{
"emergencyType": "appointment_cancellation",
"patientId": "PAT_001",
"appointmentId": "APT_001",
"severity": "high",
"contactMethod": "immediate",
"reason": "doctor_unavailable",
"rescheduleRequired": true,
"timestamp": "2025-01-27T12:00:00Z"
}
Location Update
https://vrim.app.n8n.cloud/webhook/location-update
{
"patientId": "PAT_001",
"latitude": 53.3498,
"longitude": -6.2603,
"accuracy": 50,
"timestamp": "2025-01-27T12:00:00Z",
"locationMethod": "gps",
"batteryLevel": 85,
"speed": 0,
"heading": 45
}
Proximity Alert
https://vrim.app.n8n.cloud/webhook/proximity-alert
{
"patientId": "PAT_001",
"hospitalId": "HOSP01",
"distance": 0.5,
"alertType": "proximity_reached",
"threshold": 0.5,
"emergencySlotAvailable": true,
"estimatedArrival": 8,
"timestamp": "2025-01-27T12:00:00Z"
}
Consent Management
https://vrim.app.n8n.cloud/webhook/consent-grant
{
"patientId": "PAT_001",
"consentType": "location_tracking",
"consentGranted": true,
"retentionDays": 30,
"anonymizationLevel": "medium",
"consentMethod": "web_interface",
"timestamp": "2025-01-27T12:00:00Z"
}
System Health Check
https://vrim.app.n8n.cloud/webhook/health-check
{
"checkType": "full_system",
"includeMetrics": true,
"timestamp": "2025-01-27T12:00:00Z"
}