POST api/appointments/{Id}/reschedule

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

string

Required

Body Parameters

AppointmentSlotRescheduleRequestModel
NameDescriptionTypeAdditional information
ApptSlotId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ApptSlotId": "sample string 1"
}

application/xml, text/xml

Sample:
<AppointmentSlotRescheduleRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HyperQB.Property.API.Models">
  <ApptSlotId>sample string 1</ApptSlotId>
</AppointmentSlotRescheduleRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppointmentSlotRescheduleOutputModel
NameDescriptionTypeAdditional information
Result

string

None.

Id

string

None.

AppointmentStatus

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": "sample string 1",
  "Id": "sample string 2",
  "AppointmentStatus": "sample string 3"
}

application/xml, text/xml

Sample:
<AppointmentSlotRescheduleOutputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HyperQB.Property.API.Models">
  <AppointmentStatus>sample string 3</AppointmentStatus>
  <Id>sample string 2</Id>
  <Result>sample string 1</Result>
</AppointmentSlotRescheduleOutputModel>