POST api/CheckIn
Checks in an appointment.
Request Information
URI Parameters
None.
Body Parameters
CheckInModelName | 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": "afd4f2f4-5a04-46aa-8e71-a1fa826b0110" }
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>afd4f2f4-5a04-46aa-8e71-a1fa826b0110</AppointmentId> </CheckInModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CheckInModelName | 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": "bd4cf11b-0a3f-4225-a957-2b1c4a183bd0" }
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>bd4cf11b-0a3f-4225-a957-2b1c4a183bd0</AppointmentId> </CheckInModel>