GET api/scheduledcustomers/{date}/{propertyid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
date

string

Required

propertyid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ScheduledCustomer
NameDescriptionTypeAdditional information
FolderId

integer

None.

FolderAlias

string

None.

PersonId

integer

None.

CheckInStatus

CFCheckInStatus

None.

ActivityDate

string

None.

HasMessage

boolean

None.

TotalAppointments

byte

None.

CheckInMessage

string

None.

CheckOutMessage

string

None.

ArrivalSate

CFArrivalStates

None.

IsDelayed

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FolderId": 1,
    "FolderAlias": "sample string 2",
    "PersonId": 3,
    "CheckInStatus": 0,
    "ActivityDate": "sample string 4",
    "HasMessage": true,
    "TotalAppointments": 64,
    "CheckInMessage": "sample string 7",
    "CheckOutMessage": "sample string 8",
    "ArrivalSate": 0,
    "IsDelayed": true
  },
  {
    "FolderId": 1,
    "FolderAlias": "sample string 2",
    "PersonId": 3,
    "CheckInStatus": 0,
    "ActivityDate": "sample string 4",
    "HasMessage": true,
    "TotalAppointments": 64,
    "CheckInMessage": "sample string 7",
    "CheckOutMessage": "sample string 8",
    "ArrivalSate": 0,
    "IsDelayed": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfScheduledCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
  <ScheduledCustomer>
    <ActivityDate>sample string 4</ActivityDate>
    <ArrivalSate>Expected</ArrivalSate>
    <CheckInMessage>sample string 7</CheckInMessage>
    <CheckInStatus>NotCheckedIn</CheckInStatus>
    <CheckOutMessage>sample string 8</CheckOutMessage>
    <FolderAlias>sample string 2</FolderAlias>
    <FolderId>1</FolderId>
    <HasMessage>true</HasMessage>
    <IsDelayed>true</IsDelayed>
    <PersonId>3</PersonId>
    <TotalAppointments>64</TotalAppointments>
  </ScheduledCustomer>
  <ScheduledCustomer>
    <ActivityDate>sample string 4</ActivityDate>
    <ArrivalSate>Expected</ArrivalSate>
    <CheckInMessage>sample string 7</CheckInMessage>
    <CheckInStatus>NotCheckedIn</CheckInStatus>
    <CheckOutMessage>sample string 8</CheckOutMessage>
    <FolderAlias>sample string 2</FolderAlias>
    <FolderId>1</FolderId>
    <HasMessage>true</HasMessage>
    <IsDelayed>true</IsDelayed>
    <PersonId>3</PersonId>
    <TotalAppointments>64</TotalAppointments>
  </ScheduledCustomer>
</ArrayOfScheduledCustomer>