PUT 17.0/database/appointmentproperties/{appointmentid}/{propertyid}

Description

Update existing Appointment Properties

URI Parameters

Name Description Type Additional information
appointmentID

integer

Required

propertyID

integer

Required

Name Description Type Additional information
AppointmentID

integer

None.

PropertyID

integer

None.

Confirmed

byte

None.

ConfirmedDate

date

None.

DisplayOrder

integer

None.

EmailConfirmationDate

date

None.

SMSConfirmationDate

date

None.

application/json, text/json

Sample:
{
  "appointmentID": 1,
  "propertyID": 1,
  "confirmed": 64,
  "confirmedDate": "2025-01-09T20:50",
  "displayOrder": 1,
  "emailConfirmationDate": "2025-01-09T20:50",
  "smsConfirmationDate": "2025-01-09T20:50"
}

application/xml, text/xml

Sample:
<AppointmentPropertiesUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AppointmentID>1</AppointmentID>
  <PropertyID>1</PropertyID>
  <Confirmed>64</Confirmed>
  <ConfirmedDate>2025-01-09T20:50:44.0705688+00:00</ConfirmedDate>
  <DisplayOrder>1</DisplayOrder>
  <EmailConfirmationDate>2025-01-09T20:50:44.0705688+00:00</EmailConfirmationDate>
  <SMSConfirmationDate>2025-01-09T20:50:44.0705688+00:00</SMSConfirmationDate>
</AppointmentPropertiesUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Name Description Type Additional information
AppointmentID

integer

None.

PropertyID

integer

None.

Confirmed

byte

None.

ConfirmedDate

date

None.

DisplayOrder

integer

None.

EmailConfirmationDate

date

None.

SMSConfirmationDate

date

None.

application/json, text/json

Sample:
{
  "appointmentID": 1,
  "propertyID": 2,
  "confirmed": 64,
  "confirmedDate": "2025-01-09T20:50",
  "displayOrder": 5,
  "emailConfirmationDate": "2025-01-09T20:50",
  "smsConfirmationDate": "2025-01-09T20:50"
}

application/xml, text/xml

Sample:
<AppointmentProperties xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AppointmentID>1</AppointmentID>
  <PropertyID>2</PropertyID>
  <Confirmed>64</Confirmed>
  <ConfirmedDate>2025-01-09T20:50:44.0705688+00:00</ConfirmedDate>
  <DisplayOrder>5</DisplayOrder>
  <EmailConfirmationDate>2025-01-09T20:50:44.0705688+00:00</EmailConfirmationDate>
  <SMSConfirmationDate>2025-01-09T20:50:44.0705688+00:00</SMSConfirmationDate>
</AppointmentProperties>