GET PlanCare2Api/ClientplansV2/availableResponsibleEmployees?referenceDate={referenceDate}
Retrieve the employees available as responsible person for a clientplan V2.
Requires 'Start' permission for function ClientPlanOverview {7757BB23-A132-438A-9601-28E6BF9E4CA7}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| referenceDate |
Date on which the employee's contract of service should be valid. (Use the clientplan's startdate.) |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of employeeBaseInfos.
Collection of EmployeeBaseInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeId |
Id of the employee |
integer |
None. |
| EmployeeName |
Lookupname of the employee |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"EmployeeId": 1,
"EmployeeName": "sample string 2"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmployeeBaseInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Employee">
<EmployeeBaseInfo>
<EmployeeId>1</EmployeeId>
<EmployeeName>sample string 2</EmployeeName>
</EmployeeBaseInfo>
<EmployeeBaseInfo>
<EmployeeId>1</EmployeeId>
<EmployeeName>sample string 2</EmployeeName>
</EmployeeBaseInfo>
</ArrayOfEmployeeBaseInfo>