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

Description

Update existing Appointment Contacts

URI Parameters

Name Description Type Additional information
appointmentID

integer

Required

contactID

integer

Required

Name Description Type Additional information
AppointmentID

integer

None.

ContactID

integer

None.

Confirmed

byte

None.

ConfirmedDate

date

None.

EmailConfirmationDate

date

None.

SMSConfirmationDate

date

None.

application/json, text/json

Sample:
{
  "appointmentID": 1,
  "contactID": 1,
  "confirmed": 64,
  "confirmedDate": "2025-01-09T20:29",
  "emailConfirmationDate": "2025-01-09T20:29",
  "smsConfirmationDate": "2025-01-09T20:29"
}

application/xml, text/xml

Sample:
<AppointmentContactsUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AppointmentID>1</AppointmentID>
  <ContactID>1</ContactID>
  <Confirmed>64</Confirmed>
  <ConfirmedDate>2025-01-09T20:29:02.0556117+00:00</ConfirmedDate>
  <EmailConfirmationDate>2025-01-09T20:29:02.0556117+00:00</EmailConfirmationDate>
  <SMSConfirmationDate>2025-01-09T20:29:02.0556117+00:00</SMSConfirmationDate>
</AppointmentContactsUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Name Description Type Additional information
AppointmentID

integer

None.

ContactID

integer

None.

Confirmed

byte

None.

ConfirmedDate

date

None.

EmailConfirmationDate

date

None.

SMSConfirmationDate

date

None.

application/json, text/json

Sample:
{
  "appointmentID": 1,
  "contactID": 2,
  "confirmed": 64,
  "confirmedDate": "2025-01-09T20:29",
  "emailConfirmationDate": "2025-01-09T20:29",
  "smsConfirmationDate": "2025-01-09T20:29"
}

application/xml, text/xml

Sample:
<AppointmentContacts xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AppointmentID>1</AppointmentID>
  <ContactID>2</ContactID>
  <Confirmed>64</Confirmed>
  <ConfirmedDate>2025-01-09T20:29:02.0556117+00:00</ConfirmedDate>
  <EmailConfirmationDate>2025-01-09T20:29:02.0556117+00:00</EmailConfirmationDate>
  <SMSConfirmationDate>2025-01-09T20:29:02.0556117+00:00</SMSConfirmationDate>
</AppointmentContacts>