GET 17.0/app/contacts/{appointmentid}/appointment

Description

Gets a list of Contacts by appointmentId

URI Parameters

Name Description Type Additional information
appointmentId

integer

Required

None.

None.

Collection of AppointmentContactItem
Name Description Type Additional information
ContactId

integer

None.

Name

string

None.

IsAttending

boolean

None.

TypeId

integer

None.

Type

string

None.

Email

string

None.

Mobile

string

None.

SendEmail

boolean

None.

SendSms

boolean

None.

LinkedTo

integer

None.

AppointmentContact

boolean

None.

EmailConfirmationDate

date

None.

SmsConfirmationDate

date

None.

PropertyId

integer

None.

application/json, text/json

Sample:
[
  {
    "contactId": 1,
    "name": "sample string 2",
    "isAttending": true,
    "typeId": 4,
    "type": "sample string 5",
    "email": "sample string 6",
    "mobile": "sample string 7",
    "sendEmail": true,
    "sendSms": true,
    "linkedTo": 10,
    "appointmentContact": true,
    "emailConfirmationDate": "2025-04-26T21:01",
    "smsConfirmationDate": "2025-04-26T21:01",
    "propertyId": 14
  },
  {
    "contactId": 1,
    "name": "sample string 2",
    "isAttending": true,
    "typeId": 4,
    "type": "sample string 5",
    "email": "sample string 6",
    "mobile": "sample string 7",
    "sendEmail": true,
    "sendSms": true,
    "linkedTo": 10,
    "appointmentContact": true,
    "emailConfirmationDate": "2025-04-26T21:01",
    "smsConfirmationDate": "2025-04-26T21:01",
    "propertyId": 14
  }
]

application/xml, text/xml

Sample:
<ArrayOfAppointmentContactItem xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AppointmentContactItem>
    <ContactId>1</ContactId>
    <Name>sample string 2</Name>
    <IsAttending>true</IsAttending>
    <TypeId>4</TypeId>
    <Type>sample string 5</Type>
    <Email>sample string 6</Email>
    <Mobile>sample string 7</Mobile>
    <SendEmail>true</SendEmail>
    <SendSms>true</SendSms>
    <LinkedTo>10</LinkedTo>
    <AppointmentContact>true</AppointmentContact>
    <EmailConfirmationDate>2025-04-26T21:01:51.0711387+01:00</EmailConfirmationDate>
    <SmsConfirmationDate>2025-04-26T21:01:51.0711387+01:00</SmsConfirmationDate>
    <PropertyId>14</PropertyId>
  </AppointmentContactItem>
  <AppointmentContactItem>
    <ContactId>1</ContactId>
    <Name>sample string 2</Name>
    <IsAttending>true</IsAttending>
    <TypeId>4</TypeId>
    <Type>sample string 5</Type>
    <Email>sample string 6</Email>
    <Mobile>sample string 7</Mobile>
    <SendEmail>true</SendEmail>
    <SendSms>true</SendSms>
    <LinkedTo>10</LinkedTo>
    <AppointmentContact>true</AppointmentContact>
    <EmailConfirmationDate>2025-04-26T21:01:51.0711387+01:00</EmailConfirmationDate>
    <SmsConfirmationDate>2025-04-26T21:01:51.0711387+01:00</SmsConfirmationDate>
    <PropertyId>14</PropertyId>
  </AppointmentContactItem>
</ArrayOfAppointmentContactItem>