POST 17.0/database/appointmentproperties/list

Description

Retrieve a list of Appointment Properties

URI Parameters

None.

Name Description Type Additional information
Fields

Collection of string

None.

Filters

Collection of DatabaseFilter

None.

Order

string

None.

application/json, text/json

Sample:
{
  "fields": [
    "sample string 1",
    "sample string 2"
  ],
  "filters": [
    {
      "fieldName": "sample string 1",
      "value": "sample string 2",
      "operator": "sample string 3",
      "valueType": "sample string 4"
    },
    {
      "fieldName": "sample string 1",
      "value": "sample string 2",
      "operator": "sample string 3",
      "valueType": "sample string 4"
    }
  ],
  "order": "sample string 1"
}

application/xml, text/xml

Sample:
<ListOptions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Fields>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </Fields>
  <Filters>
    <DatabaseFilter>
      <FieldName>sample string 1</FieldName>
      <Value>sample string 2</Value>
      <Operator>sample string 3</Operator>
      <ValueType>sample string 4</ValueType>
    </DatabaseFilter>
    <DatabaseFilter>
      <FieldName>sample string 1</FieldName>
      <Value>sample string 2</Value>
      <Operator>sample string 3</Operator>
      <ValueType>sample string 4</ValueType>
    </DatabaseFilter>
  </Filters>
  <Order>sample string 1</Order>
</ListOptions>

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": 1,
    "confirmed": 64,
    "confirmedDate": "2025-01-09T20:23",
    "displayOrder": 1,
    "emailConfirmationDate": "2025-01-09T20:23",
    "smsConfirmationDate": "2025-01-09T20:23"
  },
  {
    "appointmentID": 1,
    "propertyID": 1,
    "confirmed": 64,
    "confirmedDate": "2025-01-09T20:23",
    "displayOrder": 1,
    "emailConfirmationDate": "2025-01-09T20:23",
    "smsConfirmationDate": "2025-01-09T20:23"
  }
]

application/xml, text/xml

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