POST api/CheckIn
Checks in an appointment.
Request Information
URI Parameters
None.
Body Parameters
CheckInModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AppointmentId |
Unique ID of the appointment that will be checked in. |
globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"AppointmentId": "e55ff591-44ba-447e-8906-2b79c3c1041b"
}
application/xml, text/xml
Sample:
<CheckInModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.Appointments"> <AppointmentId>e55ff591-44ba-447e-8906-2b79c3c1041b</AppointmentId> </CheckInModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CheckInModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AppointmentId |
Unique ID of the appointment that will be checked in. |
globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"AppointmentId": "cda48707-d7fa-4be9-b8cb-36e32bc3221e"
}
application/xml, text/xml
Sample:
<CheckInModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.Appointments"> <AppointmentId>cda48707-d7fa-4be9-b8cb-36e32bc3221e</AppointmentId> </CheckInModel>