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

Gets the transfer reports

Request Information

URI Parameters

Name Description Type Additional 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
Name Description Type Additional information
AccessUserId

The user id. For reading purposes only.

integer

-

AccessUserName

The user name. For reading purposes only.

string

-

ShiftId

The id of the shift.

integer

Nullable

ShiftName

The name of the shift. For reading purposes only.

string

-

DisciplineId

The id of the discipline.

integer

Required

DisciplineName

The name of the discipline. For reading purposes only.

string

-

Calendar

The name of the calendar. For reading purposes only.

string

-

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": 1,
    "ShiftName": "sample string 3",
    "DisciplineId": 4,
    "DisciplineName": "sample string 5",
    "Calendar": "sample string 6",
    "Subject": "sample string 7",
    "Description": "sample string 8",
    "GroupCalendarId": 9,
    "TransferReportDate": "2026-05-26T22:08:51.1730294+02:00",
    "Id": 11
  },
  {
    "$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 6</Calendar>
    <Description>sample string 8</Description>
    <DisciplineId>4</DisciplineId>
    <DisciplineName>sample string 5</DisciplineName>
    <GroupCalendarId>9</GroupCalendarId>
    <Id>11</Id>
    <ShiftId>1</ShiftId>
    <ShiftName>sample string 3</ShiftName>
    <Subject>sample string 7</Subject>
    <TransferReportDate>2026-05-26T22:08:51.1730294+02:00</TransferReportDate>
  </TransferReport>
  <TransferReport>
    <AccessUserId>1</AccessUserId>
    <AccessUserName>sample string 2</AccessUserName>
    <Calendar>sample string 6</Calendar>
    <Description>sample string 8</Description>
    <DisciplineId>4</DisciplineId>
    <DisciplineName>sample string 5</DisciplineName>
    <GroupCalendarId>9</GroupCalendarId>
    <Id>11</Id>
    <ShiftId>1</ShiftId>
    <ShiftName>sample string 3</ShiftName>
    <Subject>sample string 7</Subject>
    <TransferReportDate>2026-05-26T22:08:51.1730294+02:00</TransferReportDate>
  </TransferReport>
</ArrayOfTransferReport>