GET api/SDCallNotificationSchedule/GetCallsWithNotificationStatus/{accountId}/{companyId}/{fromDate}/{toDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountId

integer

Required

companyId

string

Required

fromDate

string

Required

toDate

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SDCallNotificationStatusCountDTO
NameDescriptionTypeAdditional information
PendingCount

integer

None.

AcceptedCount

integer

None.

RescheduledCount

integer

None.

ScheduledCount

integer

None.

ServiceDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PendingCount": 1,
    "AcceptedCount": 2,
    "RescheduledCount": 3,
    "ScheduledCount": 4,
    "ServiceDate": "2025-12-16T20:35:13.0078051+00:00"
  },
  {
    "PendingCount": 1,
    "AcceptedCount": 2,
    "RescheduledCount": 3,
    "ScheduledCount": 4,
    "ServiceDate": "2025-12-16T20:35:13.0078051+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSDCallNotificationStatusCountDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAWinProV4.Model.DTO.AccountSpecific.SD">
  <SDCallNotificationStatusCountDTO>
    <AcceptedCount>2</AcceptedCount>
    <PendingCount>1</PendingCount>
    <RescheduledCount>3</RescheduledCount>
    <ScheduledCount>4</ScheduledCount>
    <ServiceDate>2025-12-16T20:35:13.0078051+00:00</ServiceDate>
  </SDCallNotificationStatusCountDTO>
  <SDCallNotificationStatusCountDTO>
    <AcceptedCount>2</AcceptedCount>
    <PendingCount>1</PendingCount>
    <RescheduledCount>3</RescheduledCount>
    <ScheduledCount>4</ScheduledCount>
    <ServiceDate>2025-12-16T20:35:13.0078051+00:00</ServiceDate>
  </SDCallNotificationStatusCountDTO>
</ArrayOfSDCallNotificationStatusCountDTO>