GET PlanCare2Api/DynamicData/ClientPermissionsDetail?employeeID={employeeID}&dateFrom={dateFrom}&dateUntil={dateUntil}

Gets allowed clients for all or a given employee within a given period

Request Information

URI Parameters

Name Description Type Additional information
employeeID

The employee to obtain the allowed clients for

integer

Nullable

dateFrom

The start date to obtain client permissions for

date

Nullable

dateUntil

The end date to obtain client permissions for

date

Nullable

Body Parameters

None.

Response Information

Resource Description

The ClientPermissions for all or a given employees and the allowed clients

Collection of ClientPermissionsDetailResult
Name Description Type Additional information
F_Employee_Employee

integer

Nullable

F_Client_Client

integer

Nullable

Datefrom

date

Nullable

Dateuntil

date

Nullable

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "F_Employee_Employee": 1,
    "F_Client_Client": 1,
    "Datefrom": "2026-05-26T23:20:37.0274361+02:00",
    "Dateuntil": "2026-05-26T23:20:37.0274361+02:00"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDynamicDataController.ClientPermissionsDetailResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Controllers">
  <DynamicDataController.ClientPermissionsDetailResult>
    <Datefrom>2026-05-26T23:20:37.0274361+02:00</Datefrom>
    <Dateuntil>2026-05-26T23:20:37.0274361+02:00</Dateuntil>
    <F_Client_Client>1</F_Client_Client>
    <F_Employee_Employee>1</F_Employee_Employee>
  </DynamicDataController.ClientPermissionsDetailResult>
  <DynamicDataController.ClientPermissionsDetailResult>
    <Datefrom>2026-05-26T23:20:37.0274361+02:00</Datefrom>
    <Dateuntil>2026-05-26T23:20:37.0274361+02:00</Dateuntil>
    <F_Client_Client>1</F_Client_Client>
    <F_Employee_Employee>1</F_Employee_Employee>
  </DynamicDataController.ClientPermissionsDetailResult>
</ArrayOfDynamicDataController.ClientPermissionsDetailResult>