GET PlanCare2Api/Employees/Current/Cases

Gets the cases in the caseload of the logged on employee

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of clients in employee caseload

Collection of Case
NameDescriptionTypeAdditional information
ClientId

Identifier of the client

Identity

None.

ClientName

The name of the client

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "ClientId": {
      "$id": "2",
      "Identifier": "sample string 1",
      "Type": 0
    },
    "ClientName": "sample string 1"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
  <Case>
    <ClientId xmlns:d3p1="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Common.Infrastructure">
      <d3p1:Identifier>sample string 1</d3p1:Identifier>
      <d3p1:Type>ExternalId</d3p1:Type>
    </ClientId>
    <ClientName>sample string 1</ClientName>
  </Case>
  <Case>
    <ClientId xmlns:d3p1="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Common.Infrastructure">
      <d3p1:Identifier>sample string 1</d3p1:Identifier>
      <d3p1:Type>ExternalId</d3p1:Type>
    </ClientId>
    <ClientName>sample string 1</ClientName>
  </Case>
</ArrayOfCase>