POST PlanCare2Api/TransferReports

Create a new transfer report

Request Information

URI Parameters

None.

Body Parameters

The transfer report instance to save

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

Request Formats

application/json, text/json

Sample:
{
  "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:07:58.2693656+02:00",
  "Id": 11
}

application/xml, text/xml

Sample:
<TransferReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
  <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:07:58.2693656+02:00</TransferReportDate>
</TransferReport>

Response Information

Resource Description

Returns the HttpResponseMessage which contains the saved transfer report instance

HttpResponseMessage
Name Description Type Additional information
Version

Version

-

Content

HttpContent

-

StatusCode

HttpStatusCode

-

ReasonPhrase

string

-

Headers

Collection of Object

-

RequestMessage

HttpRequestMessage

-

IsSuccessStatusCode

boolean

-