Telemedicine API

DigiCare Module • v1.0 Clinical Standard

Encrypted virtual encounter protocol for remote diagnostics. Designed to provide secure clinical pathways for patients in remote locations, fully integrated with the PugaPay revenue cycle.

POST/consultations

Initiate a virtual clinical encounter and generate encrypted meeting credentials.

Example Request

{
  "patient_id": "PT-001234",
  "provider_id": "DR-0089",
  "type": "video",
  "scheduled_time": "2026-04-10T14:00:00Z"
}

Expected Response

{
  "consultation_id": "CS-004567",
  "status": "scheduled",
  "meeting_url": "https://meet.pugatricare.com/CS-004567"
}
PUT/consultations/{id}/notes

Synchronize clinical findings and prescriptions directly to the patient's portable health wallet.

Example Request

{
  "notes": "Patient diagnosed with mild malaria. Prescribed artemether-lumefantrine.",
  "diagnosis_codes": [
    "ICD-10:B54"
  ],
  "prescriptions": [
    {
      "drug": "Artemether-lumefantrine",
      "dosage": "2 tabs twice daily for 3 days"
    }
  ]
}

Expected Response

{
  "status": "synchronized",
  "timestamp": "2026-04-10T14:45:00Z"
}

End-to-End Encryption

AES-256 GCM

Low Bandwidth Mode

Optimized for 3G/4G

Universal Meeting

Cross-platform WebRTC

Clinical Compliance

Secure Messaging

All text-based clinical advice exchanged during sessions is persisted in the encrypted patient history.

Session Audit

Logs include start/end times and clinical participants for regulatory insurance verification.