POST PlanCare2Api/TransferReports

Create a new transfer report

Request Information

URI Parameters

None.

Body Parameters

The transfer report instance to save

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

Request Formats

application/json, text/json

Sample:
{
  "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-26T23:19:07.86148+02:00",
  "Id": 12
}

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 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-26T23:19:07.86148+02:00</TransferReportDate>
</TransferReport>

Response Information

Resource Description

Returns the HttpResponseMessage which contains the saved transfer report instance

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.