GET api/customerdailyactivity/getday/{cfid}/{sdate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
cfid

integer

Required

sdate

string

Required

Body Parameters

None.

Response Information

Resource Description

CustomerDailyActivity
NameDescriptionTypeAdditional information
DAId

integer

None.

CFId

integer

None.

FolderAlias

string

None.

CheckInStatus

string

None.

ActivityDate

date

None.

ActivityDateText

string

None.

TotalAppointments

byte

None.

ScheduledAppointments

byte

None.

AppointmentsToBeCharged

byte

None.

AppointmentsCharged

byte

None.

CFCheckInStatus

CFCheckInStatus

None.

Response Formats

application/json, text/json

Sample:
{
  "DAId": 1,
  "CFId": 2,
  "FolderAlias": "sample string 3",
  "CheckInStatus": "sample string 4",
  "ActivityDate": "2026-03-13T07:14:38.2964482+02:00",
  "ActivityDateText": "sample string 6",
  "TotalAppointments": 64,
  "ScheduledAppointments": 64,
  "AppointmentsToBeCharged": 64,
  "AppointmentsCharged": 64,
  "CFCheckInStatus": 0
}

application/xml, text/xml

Sample:
<CustomerDailyActivity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Web.Api.Models">
  <ActivityDate>2026-03-13T07:14:38.2964482+02:00</ActivityDate>
  <ActivityDateText>sample string 6</ActivityDateText>
  <AppointmentsCharged>64</AppointmentsCharged>
  <AppointmentsToBeCharged>64</AppointmentsToBeCharged>
  <CFCheckInStatus>NotCheckedIn</CFCheckInStatus>
  <CFId>2</CFId>
  <CheckInStatus>sample string 4</CheckInStatus>
  <DAId>1</DAId>
  <FolderAlias>sample string 3</FolderAlias>
  <ScheduledAppointments>64</ScheduledAppointments>
  <TotalAppointments>64</TotalAppointments>
</CustomerDailyActivity>