GET PlanCare2Api/Call/AvailableEmployees?callTypeGuid={callTypeGuid}&dateIncident={dateIncident}

Gets available employees.

Requires 'Start' permission for function CallOverview {0D159E1F-6728-4243-9A43-996F7DC5AD8A}

Request Information

URI Parameters

Name Description Type Additional information
callTypeGuid

The guid of the type of call.

globally unique identifier

Required

dateIncident

The date of the incident.

date

Required

Body Parameters

None.

Response Information

Resource Description

List of available employees.

Collection of CallAvailableEmployee
Name Description Type Additional information
RelationId

RelationId

integer

-

LookupName

LookupName

string

-

FirstName

FirstName

string

-

LastName

LastName

string

-

Prefix

Prefix

string

-

NickName

LastName

string

-

Gender

Gender

string

-

DateOfBirth

DateOfBirth

date

Nullable

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "RelationId": 1,
    "LookupName": "sample string 2",
    "FirstName": "sample string 3",
    "LastName": "sample string 4",
    "Prefix": "sample string 5",
    "NickName": "sample string 6",
    "Gender": "sample string 7",
    "DateOfBirth": "2026-05-26T21:10:46.9979829+02:00"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCallAvailableEmployee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Call">
  <CallAvailableEmployee>
    <DateOfBirth>2026-05-26T21:10:46.9979829+02:00</DateOfBirth>
    <FirstName>sample string 3</FirstName>
    <Gender>sample string 7</Gender>
    <LastName>sample string 4</LastName>
    <LookupName>sample string 2</LookupName>
    <NickName>sample string 6</NickName>
    <Prefix>sample string 5</Prefix>
    <RelationId>1</RelationId>
  </CallAvailableEmployee>
  <CallAvailableEmployee>
    <DateOfBirth>2026-05-26T21:10:46.9979829+02:00</DateOfBirth>
    <FirstName>sample string 3</FirstName>
    <Gender>sample string 7</Gender>
    <LastName>sample string 4</LastName>
    <LookupName>sample string 2</LookupName>
    <NickName>sample string 6</NickName>
    <Prefix>sample string 5</Prefix>
    <RelationId>1</RelationId>
  </CallAvailableEmployee>
</ArrayOfCallAvailableEmployee>