POST api/CheckIn

Checks in an appointment.

Request Information

URI Parameters

None.

Body Parameters

CheckInModel
NameDescriptionTypeAdditional information
AppointmentId

Unique ID of the appointment that will be checked in.

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "AppointmentId": "3bdaf491-a0ed-4567-9dde-513d12eb554b"
}

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>3bdaf491-a0ed-4567-9dde-513d12eb554b</AppointmentId>
</CheckInModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CheckInModel
NameDescriptionTypeAdditional information
AppointmentId

Unique ID of the appointment that will be checked in.

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "AppointmentId": "84d68c8c-1c27-486c-8aac-e6ae63544709"
}

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>84d68c8c-1c27-486c-8aac-e6ae63544709</AppointmentId>
</CheckInModel>