Send OTP Code

Verify OTP Code

Send Notification

Send Welcome Email

API Documentation

Health Check

GET /api/health

Send OTP

POST /api/send-otp

{
  "email": "user@example.com",
  "user_name": "John Doe"
}

Verify OTP

POST /api/verify-otp

{
  "email": "user@example.com",
  "otp": "123456"
}

Send Notification

POST /api/send-notification

{
  "email": "user@example.com",
  "title": "Notification Title",
  "message": "Your notification message",
  "user_name": "John Doe"
}

Send Welcome Email

POST /api/send-welcome

{
  "email": "user@example.com",
  "user_name": "John Doe"
}