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

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
RelationId

RelationId

integer

None

LookupName

LookupName

string

None

FirstName

FirstName

string

None

LastName

LastName

string

None

Prefix

Prefix

string

None

NickName

LastName

string

None

Gender

Gender

string

None

DateOfBirth

DateOfBirth

date

None

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:17.4485875+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:17.4485875+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:17.4485875+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>