GET PlanCare2Api/DaytimeActivity/MeetingSeries/{id}/employees?date={date}

Fetches the employees of a daytime activity meeting on a given day

Requires 'Start' permission for function DaytimeActivityProgramClient {E7F4025B-80C9-4E2A-8537-129E3D0CC2C9}

Request Information

URI Parameters

Name Description Type Additional information
id

Id of the meeting

globally unique identifier

Required

date

Date of the occurrence of the meeting

date

Required

Body Parameters

None.

Response Information

Resource Description

List of employees involved with the meeting. Or BadRequest when no meeting is scheduled at given date.

Collection of MeetingExceptionEmployee
Name Description Type Additional information
Id

The identifier of the employee

integer

-

Name

The name of the employee

string

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "Name": "sample string 2"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMeetingExceptionEmployee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.DaytimeActivity">
  <MeetingExceptionEmployee>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </MeetingExceptionEmployee>
  <MeetingExceptionEmployee>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </MeetingExceptionEmployee>
</ArrayOfMeetingExceptionEmployee>