PUT 17.0/database/appointmentnotifications/{appointmentid}/{contactid}

Description

Update existing Appointment Notifications

URI Parameters

Name Description Type Additional information
appointmentID

integer

Required

contactID

integer

Required

Name Description Type Additional information
AppointmentID

integer

None.

ContactID

integer

None.

EmailSentDate

date

None.

SMSTextSentDate

date

None.

application/json, text/json

Sample:
{
  "appointmentID": 1,
  "contactID": 1,
  "emailSentDate": "2025-01-09T20:11",
  "smsTextSentDate": "2025-01-09T20:11"
}

application/xml, text/xml

Sample:
<AppointmentNotificationsUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AppointmentID>1</AppointmentID>
  <ContactID>1</ContactID>
  <EmailSentDate>2025-01-09T20:11:53.058926+00:00</EmailSentDate>
  <SMSTextSentDate>2025-01-09T20:11:53.058926+00:00</SMSTextSentDate>
</AppointmentNotificationsUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Name Description Type Additional information
AppointmentID

integer

None.

ContactID

integer

None.

EmailSentDate

date

None.

SMSTextSentDate

date

None.

application/json, text/json

Sample:
{
  "appointmentID": 1,
  "contactID": 2,
  "emailSentDate": "2025-01-09T20:11",
  "smsTextSentDate": "2025-01-09T20:11"
}

application/xml, text/xml

Sample:
<AppointmentNotifications xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AppointmentID>1</AppointmentID>
  <ContactID>2</ContactID>
  <EmailSentDate>2025-01-09T20:11:53.058926+00:00</EmailSentDate>
  <SMSTextSentDate>2025-01-09T20:11:53.058926+00:00</SMSTextSentDate>
</AppointmentNotifications>