GET api/Appointments?externalId={externalId}
Gets information about an appointment.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| externalId |
Appointment's unique ID on integrating system. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
AppointmentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationExternalId |
Location's unique ID on integrating system (Required). |
string |
None. |
| DoctorExternalId |
Doctor's unique ID on integrating system (Required). |
string |
None. |
| PatientExternalId |
Patient's unique ID on integrating system (Required). |
string |
None. |
| PatientPracticeManagementSystemId |
Patient's practice management system ID on integrating system (Required). |
string |
None. |
| AppointmentStatusExternalId |
Appointment status' unique ID on integrating system (Required). |
string |
None. |
| AppointmentTypeExternalId |
Unique ID of the appointment type on integrating system. |
string |
None. |
| CancelReason |
Appointment cancellation reason. |
string |
None. |
| Start |
Date and time of the appointment. |
date |
None. |
| End |
Date and time when the appointment ends. |
date |
None. |
| Id |
Unique ID of the model in the portal (Read only). |
globally unique identifier |
None. |
| ExternalId |
Unique ID of the model on integrating system (Required). |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"locationExternalId": "sample string 1",
"doctorExternalId": "sample string 2",
"patientExternalId": "sample string 3",
"patientPracticeManagementSystemId": "sample string 4",
"appointmentStatusExternalId": "sample string 5",
"appointmentTypeExternalId": "sample string 6",
"cancelReason": "sample string 7",
"start": "2026-08-28T05:45:07.3782276+00:00",
"end": "2026-08-28T05:45:07.3782276+00:00",
"id": "ebd0ce2e-5ea3-4c8c-b22e-0b9632abdcc2",
"externalId": "sample string 11"
}
application/xml, text/xml
Sample:
<AppointmentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.AppointmentsModel"> <ExternalId xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">sample string 11</ExternalId> <Id xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">ebd0ce2e-5ea3-4c8c-b22e-0b9632abdcc2</Id> <AppointmentStatusExternalId>sample string 5</AppointmentStatusExternalId> <AppointmentTypeExternalId>sample string 6</AppointmentTypeExternalId> <CancelReason>sample string 7</CancelReason> <DoctorExternalId>sample string 2</DoctorExternalId> <End>2026-08-28T05:45:07.3782276+00:00</End> <LocationExternalId>sample string 1</LocationExternalId> <PatientExternalId>sample string 3</PatientExternalId> <PatientPracticeManagementSystemId>sample string 4</PatientPracticeManagementSystemId> <Start>2026-08-28T05:45:07.3782276+00:00</Start> </AppointmentModel>