Skip to content

3. Consultation APIs

Aaron edited this page Nov 3, 2015 · 1 revision

Creating an appointment

You can create a scheduled appointment using the Scheduled Consultation API. First use the token API to get a token for a hospital administrator. Then make a HTTP POST API call to https://sandbox.connectedcare.md/api/admin/schedule/consultations/username

{
    assignedDoctorUsername: '[email protected]',
    patientUsername: '[email protected]',
    isNoCharge: false,
    primaryConsern: 'cough',
    secondaryConsern: 'vomit',
    note: '',
    scheduledTime: 'Oct 31, 2015 1:30:00PM',
    doctorName: '',
    profileImagePath: '',
    schedulingReasonType: 1,
    prevConsultationId: 1,
    scheduledFrom: ''
}

The email addresses in the Username fields must match clinician and patient accounts that exist on the ConnectedCare platform.

Clone this wiki locally