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": "cc87460b-0b05-4a1f-a2d6-eb11d54f0838" }
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>cc87460b-0b05-4a1f-a2d6-eb11d54f0838</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": "5d5a991f-97f6-4edb-a864-43f90ed369fd" }
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>5d5a991f-97f6-4edb-a864-43f90ed369fd</AppointmentId> </CheckInModel>