GET PlanCare2Api/TransferReports?fromDate={fromDate}&untilDate={untilDate}&groupcalendarId={groupcalendarId}

Gets the transfer reports

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fromDate

The from date to fetch reports

date

Required

untilDate

The until date to fetch reports

date

Required

groupcalendarId

The identity that the transfer report has

integer

Required

Body Parameters

None.

Response Information

Resource Description

Returns a list of requested transfer reports

Collection of TransferReport
NameDescriptionTypeAdditional information
AccessUserId

The user id. For reading purposes only.

integer

None

AccessUserName

The user name. For reading purposes only.

string

None

ShiftId

The id of the shift.

integer

Required

ShiftName

The name of the shift. For reading purposes only.

string

None

DisciplineId

The id of the discipline.

integer

Required

DisciplineName

The name of the discipline. For reading purposes only.

string

None

Calendar

The name of the calendar. For reading purposes only.

string

None

Subject

The subject of the report.

string

Required

Description

The description of the report.

string

Required

GroupCalendarId

The id of the group calendar.

integer

Required

TransferReportDate

The date for the transfer report.

date

Required

Id

The internal Id of the report.

integer

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "AccessUserId": 1,
    "AccessUserName": "sample string 2",
    "ShiftId": 3,
    "ShiftName": "sample string 4",
    "DisciplineId": 5,
    "DisciplineName": "sample string 6",
    "Calendar": "sample string 7",
    "Subject": "sample string 8",
    "Description": "sample string 9",
    "GroupCalendarId": 10,
    "TransferReportDate": "2026-05-26T22:09:13.0486804+02:00",
    "Id": 12
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTransferReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
  <TransferReport>
    <AccessUserId>1</AccessUserId>
    <AccessUserName>sample string 2</AccessUserName>
    <Calendar>sample string 7</Calendar>
    <Description>sample string 9</Description>
    <DisciplineId>5</DisciplineId>
    <DisciplineName>sample string 6</DisciplineName>
    <GroupCalendarId>10</GroupCalendarId>
    <Id>12</Id>
    <ShiftId>3</ShiftId>
    <ShiftName>sample string 4</ShiftName>
    <Subject>sample string 8</Subject>
    <TransferReportDate>2026-05-26T22:09:13.0486804+02:00</TransferReportDate>
  </TransferReport>
  <TransferReport>
    <AccessUserId>1</AccessUserId>
    <AccessUserName>sample string 2</AccessUserName>
    <Calendar>sample string 7</Calendar>
    <Description>sample string 9</Description>
    <DisciplineId>5</DisciplineId>
    <DisciplineName>sample string 6</DisciplineName>
    <GroupCalendarId>10</GroupCalendarId>
    <Id>12</Id>
    <ShiftId>3</ShiftId>
    <ShiftName>sample string 4</ShiftName>
    <Subject>sample string 8</Subject>
    <TransferReportDate>2026-05-26T22:09:13.0486804+02:00</TransferReportDate>
  </TransferReport>
</ArrayOfTransferReport>