POST 17.0/database/appointmentnotifications

Description

Create Appointment Notifications

URI Parameters

None.

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:40",
  "smsTextSentDate": "2025-01-09T20:40"
}

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:40:45.9854117+00:00</EmailSentDate>
  <SMSTextSentDate>2025-01-09T20:40:45.9854117+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:40",
  "smsTextSentDate": "2025-01-09T20:40"
}

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:40:45.9854117+00:00</EmailSentDate>
  <SMSTextSentDate>2025-01-09T20:40:45.9854117+00:00</SMSTextSentDate>
</AppointmentNotifications>